]> git.sesse.net Git - ffmpeg/blob - libavcodec/ac3_parser.c
mpegaudiodec: move imdct and windowing function to mpegaudiodsp
[ffmpeg] / libavcodec / ac3_parser.c
1 /*
2  * AC-3 parser
3  * Copyright (c) 2003 Fabrice Bellard
4  * Copyright (c) 2003 Michael Niedermayer
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "parser.h"
24 #include "ac3_parser.h"
25 #include "aac_ac3_parser.h"
26 #include "get_bits.h"
27 #include "libavutil/audioconvert.h"
28
29
30 #define AC3_HEADER_SIZE 7
31
32
33 static const uint8_t eac3_blocks[4] = {
34     1, 2, 3, 6
35 };
36
37
38 int avpriv_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
39 {
40     int frame_size_code;
41
42     memset(hdr, 0, sizeof(*hdr));
43
44     hdr->sync_word = get_bits(gbc, 16);
45     if(hdr->sync_word != 0x0B77)
46         return AAC_AC3_PARSE_ERROR_SYNC;
47
48     /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
49     hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
50     if(hdr->bitstream_id > 16)
51         return AAC_AC3_PARSE_ERROR_BSID;
52
53     hdr->num_blocks = 6;
54
55     /* set default mix levels */
56     hdr->center_mix_level   = 1;  // -4.5dB
57     hdr->surround_mix_level = 1;  // -6.0dB
58
59     if(hdr->bitstream_id <= 10) {
60         /* Normal AC-3 */
61         hdr->crc1 = get_bits(gbc, 16);
62         hdr->sr_code = get_bits(gbc, 2);
63         if(hdr->sr_code == 3)
64             return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
65
66         frame_size_code = get_bits(gbc, 6);
67         if(frame_size_code > 37)
68             return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
69
70         skip_bits(gbc, 5); // skip bsid, already got it
71
72         hdr->bitstream_mode = get_bits(gbc, 3);
73         hdr->channel_mode = get_bits(gbc, 3);
74
75         if(hdr->channel_mode == AC3_CHMODE_STEREO) {
76             skip_bits(gbc, 2); // skip dsurmod
77         } else {
78             if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
79                 hdr->center_mix_level = get_bits(gbc, 2);
80             if(hdr->channel_mode & 4)
81                 hdr->surround_mix_level = get_bits(gbc, 2);
82         }
83         hdr->lfe_on = get_bits1(gbc);
84
85         hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
86         hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
87         hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
88         hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
89         hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
90         hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
91         hdr->substreamid = 0;
92     } else {
93         /* Enhanced AC-3 */
94         hdr->crc1 = 0;
95         hdr->frame_type = get_bits(gbc, 2);
96         if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
97             return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
98
99         hdr->substreamid = get_bits(gbc, 3);
100
101         hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
102         if(hdr->frame_size < AC3_HEADER_SIZE)
103             return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
104
105         hdr->sr_code = get_bits(gbc, 2);
106         if (hdr->sr_code == 3) {
107             int sr_code2 = get_bits(gbc, 2);
108             if(sr_code2 == 3)
109                 return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
110             hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
111             hdr->sr_shift = 1;
112         } else {
113             hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
114             hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
115             hdr->sr_shift = 0;
116         }
117
118         hdr->channel_mode = get_bits(gbc, 3);
119         hdr->lfe_on = get_bits1(gbc);
120
121         hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
122                         (hdr->num_blocks * 256.0));
123         hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
124     }
125     hdr->channel_layout = ff_ac3_channel_layout_tab[hdr->channel_mode];
126     if (hdr->lfe_on)
127         hdr->channel_layout |= AV_CH_LOW_FREQUENCY;
128
129     return 0;
130 }
131
132 static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
133         int *need_next_header, int *new_frame_start)
134 {
135     int err;
136     union {
137         uint64_t u64;
138         uint8_t  u8[8];
139     } tmp = { av_be2ne64(state) };
140     AC3HeaderInfo hdr;
141     GetBitContext gbc;
142
143     init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
144     err = avpriv_ac3_parse_header(&gbc, &hdr);
145
146     if(err < 0)
147         return 0;
148
149     hdr_info->sample_rate = hdr.sample_rate;
150     hdr_info->bit_rate = hdr.bit_rate;
151     hdr_info->channels = hdr.channels;
152     hdr_info->channel_layout = hdr.channel_layout;
153     hdr_info->samples = hdr.num_blocks * 256;
154     hdr_info->service_type = hdr.bitstream_mode;
155     if (hdr.bitstream_mode == 0x7 && hdr.channels > 1)
156         hdr_info->service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
157     if(hdr.bitstream_id>10)
158         hdr_info->codec_id = CODEC_ID_EAC3;
159     else if (hdr_info->codec_id == CODEC_ID_NONE)
160         hdr_info->codec_id = CODEC_ID_AC3;
161
162     *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
163     *new_frame_start  = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
164     return hdr.frame_size;
165 }
166
167 static av_cold int ac3_parse_init(AVCodecParserContext *s1)
168 {
169     AACAC3ParseContext *s = s1->priv_data;
170     s->header_size = AC3_HEADER_SIZE;
171     s->sync = ac3_sync;
172     return 0;
173 }
174
175
176 AVCodecParser ff_ac3_parser = {
177     .codec_ids      = { CODEC_ID_AC3, CODEC_ID_EAC3 },
178     .priv_data_size = sizeof(AACAC3ParseContext),
179     .parser_init    = ac3_parse_init,
180     .parser_parse   = ff_aac_ac3_parse,
181     .parser_close   = ff_parse_close,
182 };