Mercurial > mplayer.hg
annotate libfaad2/mp4.c @ 14092:5a310666c054
dvd_aid_from_lang() should return -1 if lang was not found
author | aurel |
---|---|
date | Fri, 03 Dec 2004 14:14:29 +0000 |
parents | 6d50ef45a058 |
children | 2ae5ab4331ca |
rev | line source |
---|---|
10725 | 1 /* |
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding | |
12527 | 3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com |
10725 | 4 ** |
5 ** This program is free software; you can redistribute it and/or modify | |
6 ** it under the terms of the GNU General Public License as published by | |
7 ** the Free Software Foundation; either version 2 of the License, or | |
8 ** (at your option) any later version. | |
9 ** | |
10 ** This program is distributed in the hope that it will be useful, | |
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ** GNU General Public License for more details. | |
14 ** | |
15 ** You should have received a copy of the GNU General Public License | |
16 ** along with this program; if not, write to the Free Software | |
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
18 ** | |
19 ** Any non-GPL usage of this software or parts of this software is strictly | |
20 ** forbidden. | |
21 ** | |
22 ** Commercial non-GPL licensing of this software is possible. | |
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. | |
24 ** | |
12625
d81145997036
More information about modifications to comply more closely with GPL 2a.
diego
parents:
12527
diff
changeset
|
25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30 |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
26 ** $Id: mp4.c,v 1.4 2004/06/23 13:50:51 diego Exp $ |
12625
d81145997036
More information about modifications to comply more closely with GPL 2a.
diego
parents:
12527
diff
changeset
|
27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ |
10725 | 28 **/ |
29 | |
30 #include "common.h" | |
31 #include "structs.h" | |
32 | |
33 #include <stdlib.h> | |
34 | |
35 #include "bits.h" | |
36 #include "mp4.h" | |
37 #include "syntax.h" | |
38 | |
39 /* defines if an object type can be decoded by this library or not */ | |
40 static uint8_t ObjectTypesTable[32] = { | |
41 0, /* 0 NULL */ | |
42 #ifdef MAIN_DEC | |
43 1, /* 1 AAC Main */ | |
44 #else | |
45 0, /* 1 AAC Main */ | |
46 #endif | |
47 1, /* 2 AAC LC */ | |
48 #ifdef SSR_DEC | |
49 1, /* 3 AAC SSR */ | |
50 #else | |
51 0, /* 3 AAC SSR */ | |
52 #endif | |
53 #ifdef LTP_DEC | |
54 1, /* 4 AAC LTP */ | |
55 #else | |
56 0, /* 4 AAC LTP */ | |
57 #endif | |
58 #ifdef SBR_DEC | |
59 1, /* 5 SBR */ | |
60 #else | |
61 0, /* 5 SBR */ | |
62 #endif | |
12527 | 63 #ifdef SCALABLE_DEC |
64 1, /* 6 AAC Scalable */ | |
65 #else | |
10725 | 66 0, /* 6 AAC Scalable */ |
12527 | 67 #endif |
10725 | 68 0, /* 7 TwinVQ */ |
69 0, /* 8 CELP */ | |
70 0, /* 9 HVXC */ | |
71 0, /* 10 Reserved */ | |
72 0, /* 11 Reserved */ | |
73 0, /* 12 TTSI */ | |
74 0, /* 13 Main synthetic */ | |
75 0, /* 14 Wavetable synthesis */ | |
76 0, /* 15 General MIDI */ | |
77 0, /* 16 Algorithmic Synthesis and Audio FX */ | |
78 | |
79 /* MPEG-4 Version 2 */ | |
80 #ifdef ERROR_RESILIENCE | |
81 1, /* 17 ER AAC LC */ | |
82 0, /* 18 (Reserved) */ | |
83 #ifdef LTP_DEC | |
84 1, /* 19 ER AAC LTP */ | |
85 #else | |
86 0, /* 19 ER AAC LTP */ | |
87 #endif | |
12527 | 88 #ifdef SCALABLE_DEC |
89 1, /* 20 ER AAC scalable */ | |
90 #else | |
10725 | 91 0, /* 20 ER AAC scalable */ |
12527 | 92 #endif |
10725 | 93 0, /* 21 ER TwinVQ */ |
94 0, /* 22 ER BSAC */ | |
95 #ifdef LD_DEC | |
96 1, /* 23 ER AAC LD */ | |
97 #else | |
98 0, /* 23 ER AAC LD */ | |
99 #endif | |
100 0, /* 24 ER CELP */ | |
101 0, /* 25 ER HVXC */ | |
102 0, /* 26 ER HILN */ | |
103 0, /* 27 ER Parametric */ | |
104 #else /* No ER defined */ | |
105 0, /* 17 ER AAC LC */ | |
106 0, /* 18 (Reserved) */ | |
107 0, /* 19 ER AAC LTP */ | |
108 0, /* 20 ER AAC scalable */ | |
109 0, /* 21 ER TwinVQ */ | |
110 0, /* 22 ER BSAC */ | |
111 0, /* 23 ER AAC LD */ | |
112 0, /* 24 ER CELP */ | |
113 0, /* 25 ER HVXC */ | |
114 0, /* 26 ER HILN */ | |
115 0, /* 27 ER Parametric */ | |
116 #endif | |
117 0, /* 28 (Reserved) */ | |
118 0, /* 29 (Reserved) */ | |
119 0, /* 30 (Reserved) */ | |
120 0 /* 31 (Reserved) */ | |
121 }; | |
122 | |
123 /* Table 1.6.1 */ | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
124 int8_t NEAACDECAPI NeAACDecAudioSpecificConfig(uint8_t *pBuffer, |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
125 uint32_t buffer_size, |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
126 mp4AudioSpecificConfig *mp4ASC) |
10725 | 127 { |
128 return AudioSpecificConfig2(pBuffer, buffer_size, mp4ASC, NULL); | |
129 } | |
130 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
131 int8_t AudioSpecificConfig2(uint8_t *pBuffer, |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
132 uint32_t buffer_size, |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
133 mp4AudioSpecificConfig *mp4ASC, |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
134 program_config *pce) |
10725 | 135 { |
136 bitfile ld; | |
137 int8_t result = 0; | |
138 #ifdef SBR_DEC | |
139 int8_t bits_to_decode = 0; | |
140 #endif | |
141 | |
142 if (pBuffer == NULL) | |
143 return -7; | |
144 if (mp4ASC == NULL) | |
145 return -8; | |
146 | |
147 memset(mp4ASC, 0, sizeof(mp4AudioSpecificConfig)); | |
148 | |
149 faad_initbits(&ld, pBuffer, buffer_size); | |
150 faad_byte_align(&ld); | |
151 | |
152 mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5 | |
153 DEBUGVAR(1,1,"parse_audio_decoder_specific_info(): ObjectTypeIndex")); | |
154 | |
155 mp4ASC->samplingFrequencyIndex = (uint8_t)faad_getbits(&ld, 4 | |
156 DEBUGVAR(1,2,"parse_audio_decoder_specific_info(): SamplingFrequencyIndex")); | |
157 | |
158 mp4ASC->channelsConfiguration = (uint8_t)faad_getbits(&ld, 4 | |
159 DEBUGVAR(1,3,"parse_audio_decoder_specific_info(): ChannelsConfiguration")); | |
160 | |
10989 | 161 mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex); |
10725 | 162 |
163 if (ObjectTypesTable[mp4ASC->objectTypeIndex] != 1) | |
164 { | |
165 faad_endbits(&ld); | |
166 return -1; | |
167 } | |
168 | |
169 if (mp4ASC->samplingFrequency == 0) | |
170 { | |
171 faad_endbits(&ld); | |
172 return -2; | |
173 } | |
174 | |
175 if (mp4ASC->channelsConfiguration > 7) | |
176 { | |
177 faad_endbits(&ld); | |
178 return -3; | |
179 } | |
180 | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
181 #if (defined(PS_DEC) || defined(DRM_PS)) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
182 /* check if we have a mono file */ |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
183 if (mp4ASC->channelsConfiguration == 1) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
184 { |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
185 /* upMatrix to 2 channels for implicit signalling of PS */ |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
186 mp4ASC->channelsConfiguration = 2; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
187 } |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
188 #endif |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
189 |
10725 | 190 #ifdef SBR_DEC |
191 mp4ASC->sbr_present_flag = -1; | |
192 if (mp4ASC->objectTypeIndex == 5) | |
193 { | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
194 uint8_t tmp; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
195 |
10725 | 196 mp4ASC->sbr_present_flag = 1; |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
197 tmp = (uint8_t)faad_getbits(&ld, 4 |
10725 | 198 DEBUGVAR(1,5,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex")); |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
199 /* check for downsampled SBR */ |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
200 if (tmp == mp4ASC->samplingFrequencyIndex) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
201 mp4ASC->downSampledSBR = 1; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
202 mp4ASC->samplingFrequencyIndex = tmp; |
10725 | 203 if (mp4ASC->samplingFrequencyIndex == 15) |
204 { | |
205 mp4ASC->samplingFrequency = (uint32_t)faad_getbits(&ld, 24 | |
206 DEBUGVAR(1,6,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex")); | |
207 } else { | |
10989 | 208 mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex); |
10725 | 209 } |
210 mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5 | |
211 DEBUGVAR(1,7,"parse_audio_decoder_specific_info(): ObjectTypeIndex")); | |
212 } | |
213 #endif | |
214 | |
215 /* get GASpecificConfig */ | |
216 if (mp4ASC->objectTypeIndex == 1 || mp4ASC->objectTypeIndex == 2 || | |
217 mp4ASC->objectTypeIndex == 3 || mp4ASC->objectTypeIndex == 4 || | |
218 mp4ASC->objectTypeIndex == 6 || mp4ASC->objectTypeIndex == 7) | |
219 { | |
220 result = GASpecificConfig(&ld, mp4ASC, pce); | |
221 | |
222 #ifdef ERROR_RESILIENCE | |
223 } else if (mp4ASC->objectTypeIndex >= ER_OBJECT_START) { /* ER */ | |
224 result = GASpecificConfig(&ld, mp4ASC, pce); | |
225 mp4ASC->epConfig = (uint8_t)faad_getbits(&ld, 2 | |
226 DEBUGVAR(1,143,"parse_audio_decoder_specific_info(): epConfig")); | |
227 | |
228 if (mp4ASC->epConfig != 0) | |
229 result = -5; | |
230 #endif | |
231 | |
232 } else { | |
233 result = -4; | |
234 } | |
235 | |
236 #ifdef SSR_DEC | |
237 /* shorter frames not allowed for SSR */ | |
238 if ((mp4ASC->objectTypeIndex == 4) && mp4ASC->frameLengthFlag) | |
239 return -6; | |
240 #endif | |
241 | |
242 | |
243 #ifdef SBR_DEC | |
10989 | 244 bits_to_decode = (int8_t)(buffer_size*8 - faad_get_processed_bits(&ld)); |
10725 | 245 |
246 if ((mp4ASC->objectTypeIndex != 5) && (bits_to_decode >= 16)) | |
247 { | |
248 int16_t syncExtensionType = (int16_t)faad_getbits(&ld, 11 | |
249 DEBUGVAR(1,9,"parse_audio_decoder_specific_info(): syncExtensionType")); | |
250 | |
251 if (syncExtensionType == 0x2b7) | |
252 { | |
253 mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5 | |
254 DEBUGVAR(1,10,"parse_audio_decoder_specific_info(): extensionAudioObjectType")); | |
255 | |
256 if (mp4ASC->objectTypeIndex == 5) | |
257 { | |
258 mp4ASC->sbr_present_flag = (uint8_t)faad_get1bit(&ld | |
259 DEBUGVAR(1,11,"parse_audio_decoder_specific_info(): sbr_present_flag")); | |
260 | |
261 if (mp4ASC->sbr_present_flag) | |
262 { | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
263 uint8_t tmp; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
264 tmp = (uint8_t)faad_getbits(&ld, 4 |
10725 | 265 DEBUGVAR(1,12,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex")); |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
266 |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
267 /* check for downsampled SBR */ |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
268 if (tmp == mp4ASC->samplingFrequencyIndex) |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
269 mp4ASC->downSampledSBR = 1; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
270 mp4ASC->samplingFrequencyIndex = tmp; |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
271 |
10725 | 272 if (mp4ASC->samplingFrequencyIndex == 15) |
273 { | |
274 mp4ASC->samplingFrequency = (uint32_t)faad_getbits(&ld, 24 | |
275 DEBUGVAR(1,13,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex")); | |
276 } else { | |
10989 | 277 mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex); |
10725 | 278 } |
279 } | |
280 } | |
281 } | |
282 } | |
10989 | 283 |
284 /* no SBR signalled, this could mean either implicit signalling or no SBR in this file */ | |
285 /* MPEG specification states: assume SBR on files with samplerate <= 24000 Hz */ | |
286 if (mp4ASC->sbr_present_flag == -1) | |
287 { | |
288 if (mp4ASC->samplingFrequency <= 24000) | |
289 { | |
290 mp4ASC->samplingFrequency *= 2; | |
291 mp4ASC->forceUpSampling = 1; | |
13453
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
292 } else /* > 24000*/ { |
6d50ef45a058
Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12.
diego
parents:
12625
diff
changeset
|
293 mp4ASC->downSampledSBR = 1; |
10989 | 294 } |
295 } | |
10725 | 296 #endif |
297 | |
298 faad_endbits(&ld); | |
299 | |
300 return result; | |
301 } |