blob: ed5d1f3b33629f8c65fdee30857f8c6c1bb11e39 [file] [log] [blame]
Aurelien Jacobs4bd8e172007-05-20 13:40:071/*
2 * MPEG Audio header decoder
Diego Biurrun406792e2009-01-19 15:46:403 * Copyright (c) 2001, 2002 Fabrice Bellard
Aurelien Jacobs4bd8e172007-05-20 13:40:074 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
Diego Biurrunba87f082010-04-20 14:45:3423 * @file
Aurelien Jacobs4bd8e172007-05-20 13:40:0724 * MPEG Audio header decoder.
25 */
26
Stefano Sabatini98790382008-08-31 07:39:4727#ifndef AVCODEC_MPEGAUDIODECHEADER_H
28#define AVCODEC_MPEGAUDIODECHEADER_H
Aurelien Jacobs4bd8e172007-05-20 13:40:0729
Andreas Rheinhardt25c85072021-06-14 16:03:5530#include <stdint.h>
31#include "codec_id.h"
Aurelien Jacobs4bd8e172007-05-20 13:40:0732
Mans Rullgard0199e002011-05-19 12:44:1133#define MP3_MASK 0xFFFE0CCF
34
35#define MPA_DECODE_HEADER \
36 int frame_size; \
37 int error_protection; \
38 int layer; \
39 int sample_rate; \
40 int sample_rate_index; /* between 0 and 8 */ \
41 int bit_rate; \
42 int nb_channels; \
43 int mode; \
44 int mode_ext; \
45 int lsf;
46
47typedef struct MPADecodeHeader {
48 MPA_DECODE_HEADER
49} MPADecodeHeader;
Aurelien Jacobs4bd8e172007-05-20 13:40:0750
51/* header decoding. MUST check the header before because no
52 consistency check is done there. Return 1 if free format found and
53 that the frame size must be computed externally */
Anton Khirnov82ab61f2011-10-17 07:28:5354int avpriv_mpegaudio_decode_header(MPADecodeHeader *s, uint32_t header);
Aurelien Jacobs4bd8e172007-05-20 13:40:0755
Vittorio Giovara41ed7ab2016-04-27 17:45:2356/* useful helper to get MPEG audio stream info. Return -1 if error in
Mans Rullgard0199e002011-05-19 12:44:1157 header, otherwise the coded frame size in bytes */
Hendrik Leppkes92fe2ad2016-01-01 16:05:3758int ff_mpa_decode_header(uint32_t head, int *sample_rate,
59 int *channels, int *frame_size, int *bitrate, enum AVCodecID *codec_id);
Mans Rullgard0199e002011-05-19 12:44:1160
61/* fast header check for resync */
62static inline int ff_mpa_check_header(uint32_t header){
63 /* header */
64 if ((header & 0xffe00000) != 0xffe00000)
65 return -1;
Karsten Otto3bf39f22018-07-08 10:26:1066 /* version check */
Karsten Ottoce372bc2018-07-12 07:30:2567 if ((header & (3<<19)) == 1<<19)
Karsten Otto3bf39f22018-07-08 10:26:1068 return -1;
Mans Rullgard0199e002011-05-19 12:44:1169 /* layer check */
70 if ((header & (3<<17)) == 0)
71 return -1;
72 /* bit rate */
73 if ((header & (0xf<<12)) == 0xf<<12)
74 return -1;
75 /* frequency */
76 if ((header & (3<<10)) == 3<<10)
77 return -1;
78 return 0;
79}
80
Stefano Sabatini98790382008-08-31 07:39:4781#endif /* AVCODEC_MPEGAUDIODECHEADER_H */