Mercurial > libavcodec.hg
annotate ac3_parser.c @ 6824:9d4bc7d7a6dc libavcodec
Convert ra144.h tables from hex to decimal
author | vitor |
---|---|
date | Sat, 17 May 2008 14:34:55 +0000 |
parents | 2d0b86dfe5bb |
children | 77f607fb4e8b |
rev | line source |
---|---|
4941 | 1 /* |
2 * AC3 parser | |
3 * Copyright (c) 2003 Fabrice Bellard. | |
4 * Copyright (c) 2003 Michael Niedermayer. | |
5 * | |
6 * This file is part of FFmpeg. | |
7 * | |
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. | |
12 * | |
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. | |
17 * | |
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 | |
21 */ | |
22 | |
23 #include "parser.h" | |
24 #include "ac3_parser.h" | |
25 #include "aac_ac3_parser.h" | |
26 #include "bitstream.h" | |
27 | |
28 | |
29 #define AC3_HEADER_SIZE 7 | |
30 | |
31 | |
32 static const uint8_t eac3_blocks[4] = { | |
33 1, 2, 3, 6 | |
34 }; | |
35 | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
36 /** |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
37 * Table for center mix levels |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
38 * reference: Section 5.4.2.4 cmixlev |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
39 */ |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
40 static const uint8_t center_levels[4] = { 2, 3, 4, 3 }; |
4941 | 41 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
42 /** |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
43 * Table for surround mix levels |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
44 * reference: Section 5.4.2.5 surmixlev |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
45 */ |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
46 static const uint8_t surround_levels[4] = { 2, 4, 0, 4 }; |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
47 |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
48 |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
49 int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) |
4941 | 50 { |
6116 | 51 int frame_size_code; |
6117 | 52 int num_blocks; |
4941 | 53 |
54 memset(hdr, 0, sizeof(*hdr)); | |
55 | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
56 hdr->sync_word = get_bits(gbc, 16); |
4941 | 57 if(hdr->sync_word != 0x0B77) |
5680 | 58 return AC3_PARSE_ERROR_SYNC; |
4941 | 59 |
6117 | 60 /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */ |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
61 hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F; |
6117 | 62 if(hdr->bitstream_id > 16) |
5680 | 63 return AC3_PARSE_ERROR_BSID; |
4941 | 64 |
6117 | 65 if(hdr->bitstream_id <= 10) { |
6118 | 66 /* Normal AC-3 */ |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
67 hdr->crc1 = get_bits(gbc, 16); |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
68 hdr->sr_code = get_bits(gbc, 2); |
6118 | 69 if(hdr->sr_code == 3) |
70 return AC3_PARSE_ERROR_SAMPLE_RATE; | |
4941 | 71 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
72 frame_size_code = get_bits(gbc, 6); |
6118 | 73 if(frame_size_code > 37) |
74 return AC3_PARSE_ERROR_FRAME_SIZE; | |
4941 | 75 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
76 skip_bits(gbc, 5); // skip bsid, already got it |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
77 |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
78 skip_bits(gbc, 3); // skip bitstream mode |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
79 hdr->channel_mode = get_bits(gbc, 3); |
4941 | 80 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
81 /* set default mix levels */ |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
82 hdr->center_mix_level = 3; // -4.5dB |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
83 hdr->surround_mix_level = 4; // -6.0dB |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
84 |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
85 if(hdr->channel_mode == AC3_CHMODE_STEREO) { |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
86 skip_bits(gbc, 2); // skip dsurmod |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
87 } else { |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
88 if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO) |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
89 hdr->center_mix_level = center_levels[get_bits(gbc, 2)]; |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
90 if(hdr->channel_mode & 4) |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
91 hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)]; |
6118 | 92 } |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
93 hdr->lfe_on = get_bits1(gbc); |
4941 | 94 |
6118 | 95 hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8; |
96 hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift; | |
97 hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift; | |
98 hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; | |
99 hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2; | |
6651
abc8176ddf88
Make most of E-AC-3 work without breaking regression tests.
michael
parents:
6645
diff
changeset
|
100 hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT; |
6117 | 101 } else { |
102 /* Enhanced AC-3 */ | |
103 hdr->crc1 = 0; | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
104 hdr->frame_type = get_bits(gbc, 2); |
6540
b0d44aec1ec0
change name from stream type to frame type in AC3 code
bwolowiec
parents:
6539
diff
changeset
|
105 if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED) |
b0d44aec1ec0
change name from stream type to frame type in AC3 code
bwolowiec
parents:
6539
diff
changeset
|
106 return AC3_PARSE_ERROR_FRAME_TYPE; |
6529 | 107 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
108 skip_bits(gbc, 3); // skip substream id |
6117 | 109 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
110 hdr->frame_size = (get_bits(gbc, 11) + 1) << 1; |
6117 | 111 if(hdr->frame_size < AC3_HEADER_SIZE) |
112 return AC3_PARSE_ERROR_FRAME_SIZE; | |
113 | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
114 hdr->sr_code = get_bits(gbc, 2); |
6117 | 115 if (hdr->sr_code == 3) { |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
116 int sr_code2 = get_bits(gbc, 2); |
6117 | 117 if(sr_code2 == 3) |
118 return AC3_PARSE_ERROR_SAMPLE_RATE; | |
119 hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2; | |
120 hdr->sr_shift = 1; | |
121 num_blocks = 6; | |
122 } else { | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
123 num_blocks = eac3_blocks[get_bits(gbc, 2)]; |
6117 | 124 hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code]; |
125 hdr->sr_shift = 0; | |
126 } | |
127 | |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
128 hdr->channel_mode = get_bits(gbc, 3); |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
129 hdr->lfe_on = get_bits1(gbc); |
6117 | 130 |
131 hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate / | |
132 (num_blocks * 256.0)); | |
133 hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; | |
134 } | |
4941 | 135 |
136 return 0; | |
137 } | |
138 | |
6671
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
139 int ff_ac3_parse_header_full(GetBitContext *gbc, AC3HeaderInfo *hdr){ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
140 int ret, i; |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
141 ret = ff_ac3_parse_header(gbc, hdr); |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
142 if(!ret){ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
143 if(hdr->bitstream_id>10){ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
144 /* Enhanced AC-3 */ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
145 skip_bits(gbc, 5); // skip bitstream id |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
146 |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
147 /* skip dialog normalization and compression gain */ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
148 for (i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
149 skip_bits(gbc, 5); // skip dialog normalization |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
150 if (get_bits1(gbc)) { |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
151 skip_bits(gbc, 8); //skip Compression gain word |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
152 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
153 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
154 /* dependent stream channel map */ |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
155 if (hdr->frame_type == EAC3_FRAME_TYPE_DEPENDENT && get_bits1(gbc)) { |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
156 hdr->channel_map = get_bits(gbc, 16); //custom channel map |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
157 return 0; |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
158 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
159 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
160 //default channel map based on acmod and lfeon |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
161 hdr->channel_map = ff_eac3_default_chmap[hdr->channel_mode]; |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
162 if(hdr->lfe_on) |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
163 hdr->channel_map |= AC3_CHMAP_LFE; |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
164 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
165 return ret; |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
166 } |
2d0b86dfe5bb
add a ff_ac3_parse_header_full() which calls ff_ac3_parse_header()
bwolowiec
parents:
6661
diff
changeset
|
167 |
6643 | 168 static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info, |
169 int *need_next_header, int *new_frame_start) | |
4941 | 170 { |
171 int err; | |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
172 uint64_t tmp = be2me_64(state); |
4941 | 173 AC3HeaderInfo hdr; |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
174 GetBitContext gbc; |
4941 | 175 |
6661
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
176 init_get_bits(&gbc, ((uint8_t *)&tmp)+8-AC3_HEADER_SIZE, 54); |
a409fbf1f42b
change ff_ac3_parse_header() to take a GetBitContext instead of const char*
bwolowiec
parents:
6651
diff
changeset
|
177 err = ff_ac3_parse_header(&gbc, &hdr); |
4941 | 178 |
6117 | 179 if(err < 0) |
4941 | 180 return 0; |
181 | |
6527
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6517
diff
changeset
|
182 hdr_info->sample_rate = hdr.sample_rate; |
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6517
diff
changeset
|
183 hdr_info->bit_rate = hdr.bit_rate; |
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6517
diff
changeset
|
184 hdr_info->channels = hdr.channels; |
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6517
diff
changeset
|
185 hdr_info->samples = AC3_FRAME_SIZE; |
6539
04763b6fd4f0
removal of stream_type in AACAC3ParseContext and adding AACAC3FrameFlag
bwolowiec
parents:
6530
diff
changeset
|
186 |
6651
abc8176ddf88
Make most of E-AC-3 work without breaking regression tests.
michael
parents:
6645
diff
changeset
|
187 *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT); |
abc8176ddf88
Make most of E-AC-3 work without breaking regression tests.
michael
parents:
6645
diff
changeset
|
188 *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT); |
6118 | 189 return hdr.frame_size; |
4941 | 190 } |
191 | |
6517
48759bfbd073
Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents:
6118
diff
changeset
|
192 static av_cold int ac3_parse_init(AVCodecParserContext *s1) |
4941 | 193 { |
4942
b42e963c8149
cosmetics: rename for consistency after previous aac and ac3 parsers move
aurel
parents:
4941
diff
changeset
|
194 AACAC3ParseContext *s = s1->priv_data; |
4941 | 195 s->header_size = AC3_HEADER_SIZE; |
196 s->sync = ac3_sync; | |
197 return 0; | |
198 } | |
199 | |
200 | |
201 AVCodecParser ac3_parser = { | |
202 { CODEC_ID_AC3 }, | |
4942
b42e963c8149
cosmetics: rename for consistency after previous aac and ac3 parsers move
aurel
parents:
4941
diff
changeset
|
203 sizeof(AACAC3ParseContext), |
4941 | 204 ac3_parse_init, |
4942
b42e963c8149
cosmetics: rename for consistency after previous aac and ac3 parsers move
aurel
parents:
4941
diff
changeset
|
205 ff_aac_ac3_parse, |
4941 | 206 NULL, |
207 }; |