Merge branch 'master' of http://repo.or.cz/r/FFMpeg-mirror
[FFMpeg-mirror/DVCPRO-HD.git] / libavcodec / ac3_parser.c
bloba2f3c82f480b92bc00c0beda8e8aead7dc600b5f
1 /*
2 * AC3 parser
3 * Copyright (c) 2003 Fabrice Bellard.
4 * Copyright (c) 2003 Michael Niedermayer.
6 * This file is part of FFmpeg.
8 * FFmpeg 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.
13 * FFmpeg 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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "parser.h"
24 #include "ac3_parser.h"
25 #include "aac_ac3_parser.h"
26 #include "bitstream.h"
29 #define AC3_HEADER_SIZE 7
32 static const uint8_t eac3_blocks[4] = {
33 1, 2, 3, 6
37 int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
39 int frame_size_code;
41 memset(hdr, 0, sizeof(*hdr));
43 hdr->sync_word = get_bits(gbc, 16);
44 if(hdr->sync_word != 0x0B77)
45 return AC3_PARSE_ERROR_SYNC;
47 /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
48 hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
49 if(hdr->bitstream_id > 16)
50 return AC3_PARSE_ERROR_BSID;
52 hdr->num_blocks = 6;
54 /* set default mix levels */
55 hdr->center_mix_level = 1; // -4.5dB
56 hdr->surround_mix_level = 1; // -6.0dB
58 if(hdr->bitstream_id <= 10) {
59 /* Normal AC-3 */
60 hdr->crc1 = get_bits(gbc, 16);
61 hdr->sr_code = get_bits(gbc, 2);
62 if(hdr->sr_code == 3)
63 return AC3_PARSE_ERROR_SAMPLE_RATE;
65 frame_size_code = get_bits(gbc, 6);
66 if(frame_size_code > 37)
67 return AC3_PARSE_ERROR_FRAME_SIZE;
69 skip_bits(gbc, 5); // skip bsid, already got it
71 skip_bits(gbc, 3); // skip bitstream mode
72 hdr->channel_mode = get_bits(gbc, 3);
74 if(hdr->channel_mode == AC3_CHMODE_STEREO) {
75 skip_bits(gbc, 2); // skip dsurmod
76 } else {
77 if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
78 hdr->center_mix_level = get_bits(gbc, 2);
79 if(hdr->channel_mode & 4)
80 hdr->surround_mix_level = get_bits(gbc, 2);
82 hdr->lfe_on = get_bits1(gbc);
84 hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
85 hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
86 hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
87 hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
88 hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
89 hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
90 hdr->substreamid = 0;
91 } else {
92 /* Enhanced AC-3 */
93 hdr->crc1 = 0;
94 hdr->frame_type = get_bits(gbc, 2);
95 if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
96 return AC3_PARSE_ERROR_FRAME_TYPE;
98 hdr->substreamid = get_bits(gbc, 3);
100 hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
101 if(hdr->frame_size < AC3_HEADER_SIZE)
102 return AC3_PARSE_ERROR_FRAME_SIZE;
104 hdr->sr_code = get_bits(gbc, 2);
105 if (hdr->sr_code == 3) {
106 int sr_code2 = get_bits(gbc, 2);
107 if(sr_code2 == 3)
108 return AC3_PARSE_ERROR_SAMPLE_RATE;
109 hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
110 hdr->sr_shift = 1;
111 } else {
112 hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
113 hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
114 hdr->sr_shift = 0;
117 hdr->channel_mode = get_bits(gbc, 3);
118 hdr->lfe_on = get_bits1(gbc);
120 hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
121 (hdr->num_blocks * 256.0));
122 hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
125 return 0;
128 int ff_ac3_parse_header_full(GetBitContext *gbc, AC3HeaderInfo *hdr){
129 int ret, i;
130 ret = ff_ac3_parse_header(gbc, hdr);
131 if(!ret){
132 if(hdr->bitstream_id>10){
133 /* Enhanced AC-3 */
134 skip_bits(gbc, 5); // skip bitstream id
136 /* skip dialog normalization and compression gain */
137 for (i = 0; i < (hdr->channel_mode ? 1 : 2); i++) {
138 skip_bits(gbc, 5); // skip dialog normalization
139 if (get_bits1(gbc)) {
140 skip_bits(gbc, 8); //skip Compression gain word
143 /* dependent stream channel map */
144 if (hdr->frame_type == EAC3_FRAME_TYPE_DEPENDENT && get_bits1(gbc)) {
145 hdr->channel_map = get_bits(gbc, 16); //custom channel map
146 return 0;
149 //default channel map based on acmod and lfeon
150 hdr->channel_map = ff_eac3_default_chmap[hdr->channel_mode];
151 if(hdr->lfe_on)
152 hdr->channel_map |= AC3_CHMAP_LFE;
154 return ret;
157 static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
158 int *need_next_header, int *new_frame_start)
160 int err;
161 uint64_t tmp = be2me_64(state);
162 AC3HeaderInfo hdr;
163 GetBitContext gbc;
165 init_get_bits(&gbc, ((uint8_t *)&tmp)+8-AC3_HEADER_SIZE, 54);
166 err = ff_ac3_parse_header(&gbc, &hdr);
168 if(err < 0)
169 return 0;
171 hdr_info->sample_rate = hdr.sample_rate;
172 hdr_info->bit_rate = hdr.bit_rate;
173 hdr_info->channels = hdr.channels;
174 hdr_info->samples = AC3_FRAME_SIZE;
176 *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
177 *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
178 return hdr.frame_size;
181 static av_cold int ac3_parse_init(AVCodecParserContext *s1)
183 AACAC3ParseContext *s = s1->priv_data;
184 s->header_size = AC3_HEADER_SIZE;
185 s->sync = ac3_sync;
186 return 0;
190 AVCodecParser ac3_parser = {
191 { CODEC_ID_AC3 },
192 sizeof(AACAC3ParseContext),
193 ac3_parse_init,
194 ff_aac_ac3_parse,
195 ff_parse_close,