2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
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.
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.
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.
19 ** Any non-GPL usage of this software or parts of this software is strictly
22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30
27 ** detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/
28 ** local_changes.diff contains the exact changes to this file.
44 #define bit2byte(a) ((a+7)/BYTE_NUMBIT)
46 typedef struct _bitfile
52 uint32_t buffer_size
; /* size of the buffer in bytes */
54 uint8_t no_more_reading
;
62 #if defined (_WIN32) && !defined(_WIN32_WCE) && !defined(__MINGW32__)
63 #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
64 #elif defined(LINUX) || defined(DJGPP)
65 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
68 ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
71 static uint32_t bitmask
[] = {
72 0x0, 0x1, 0x3, 0x7, 0xF, 0x1F, 0x3F, 0x7F, 0xFF, 0x1FF,
73 0x3FF, 0x7FF, 0xFFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF,
74 0x1FFFF, 0x3FFFF, 0x7FFFF, 0xFFFFF, 0x1FFFFF, 0x3FFFFF,
75 0x7FFFFF, 0xFFFFFF, 0x1FFFFFF, 0x3FFFFFF, 0x7FFFFFF,
76 0xFFFFFFF, 0x1FFFFFFF, 0x3FFFFFFF, 0x7FFFFFFF
77 /* added bitmask 32, correct?!?!?! */
81 void faad_initbits(bitfile
*ld
, const void *buffer
, const uint32_t buffer_size
);
82 void faad_endbits(bitfile
*ld
);
83 void faad_initbits_rev(bitfile
*ld
, void *buffer
,
84 uint32_t bits_in_buffer
);
85 uint8_t faad_byte_align(bitfile
*ld
);
86 uint32_t faad_get_processed_bits(bitfile
*ld
);
87 void faad_flushbits_ex(bitfile
*ld
, uint32_t bits
);
88 void faad_rewindbits(bitfile
*ld
);
89 uint8_t *faad_getbitbuffer(bitfile
*ld
, uint32_t bits
92 void *faad_origbitbuffer(bitfile
*ld
);
93 uint32_t faad_origbitbuffer_size(bitfile
*ld
);
96 /* circumvent memory alignment errors on ARM */
97 static INLINE
uint32_t getdword(void *mem
)
101 #ifndef ARCH_IS_BIG_ENDIAN
102 ((uint8_t*)&tmp
)[0] = ((uint8_t*)mem
)[3];
103 ((uint8_t*)&tmp
)[1] = ((uint8_t*)mem
)[2];
104 ((uint8_t*)&tmp
)[2] = ((uint8_t*)mem
)[1];
105 ((uint8_t*)&tmp
)[3] = ((uint8_t*)mem
)[0];
107 ((uint8_t*)&tmp
)[0] = ((uint8_t*)mem
)[0];
108 ((uint8_t*)&tmp
)[1] = ((uint8_t*)mem
)[1];
109 ((uint8_t*)&tmp
)[2] = ((uint8_t*)mem
)[2];
110 ((uint8_t*)&tmp
)[3] = ((uint8_t*)mem
)[3];
116 tmp
= *(uint32_t*)mem
;
117 #ifndef ARCH_IS_BIG_ENDIAN
124 static INLINE
uint32_t faad_showbits(bitfile
*ld
, uint32_t bits
)
126 if (bits
<= ld
->bits_left
)
128 return (ld
->bufa
>> (ld
->bits_left
- bits
)) & bitmask
[bits
];
131 bits
-= ld
->bits_left
;
132 return ((ld
->bufa
& bitmask
[ld
->bits_left
]) << bits
) | (ld
->bufb
>> (32 - bits
));
135 static INLINE
void faad_flushbits(bitfile
*ld
, uint32_t bits
)
137 /* do nothing if error */
141 if (bits
< ld
->bits_left
)
143 ld
->bits_left
-= bits
;
145 faad_flushbits_ex(ld
, bits
);
149 /* return next n bits (right adjusted) */
150 static INLINE
uint32_t faad_getbits(bitfile
*ld
, uint32_t n DEBUGDEC
)
154 if (ld
->no_more_reading
|| n
== 0)
157 ret
= faad_showbits(ld
, n
);
158 faad_flushbits(ld
, n
);
162 fprintf(stdout
, "%4d %2d bits, val: %4d, variable: %d %s\n", dbg_count
++, n
, ret
, var
, dbg
);
168 static INLINE
uint8_t faad_get1bit(bitfile
*ld DEBUGDEC
)
172 if (ld
->bits_left
> 0)
175 r
= (uint8_t)((ld
->bufa
>> ld
->bits_left
) & 1);
181 r
= (uint8_t)(ld
->bufb
>> 31);
182 faad_flushbits_ex(ld
, 1);
184 r
= (uint8_t)faad_getbits(ld
, 1);
189 /* reversed bitreading routines */
190 static INLINE
uint32_t faad_showbits_rev(bitfile
*ld
, uint32_t bits
)
195 if (bits
<= ld
->bits_left
)
197 for (i
= 0; i
< bits
; i
++)
199 if (ld
->bufa
& (1 << (i
+ (32 - ld
->bits_left
))))
200 B
|= (1 << (bits
- i
- 1));
204 for (i
= 0; i
< ld
->bits_left
; i
++)
206 if (ld
->bufa
& (1 << (i
+ (32 - ld
->bits_left
))))
207 B
|= (1 << (bits
- i
- 1));
209 for (i
= 0; i
< bits
- ld
->bits_left
; i
++)
211 if (ld
->bufb
& (1 << (i
+ (32-ld
->bits_left
))))
212 B
|= (1 << (bits
- ld
->bits_left
- i
- 1));
218 static INLINE
void faad_flushbits_rev(bitfile
*ld
, uint32_t bits
)
220 /* do nothing if error */
224 if (bits
< ld
->bits_left
)
226 ld
->bits_left
-= bits
;
231 tmp
= getdword(ld
->start
);
234 ld
->bits_left
+= (32 - bits
);
237 if (ld
->bytes_used
== ld
->buffer_size
)
238 ld
->no_more_reading
= 1;
239 if (ld
->bytes_used
> ld
->buffer_size
)
244 static INLINE
uint32_t faad_getbits_rev(bitfile
*ld
, uint32_t n
249 if (ld
->no_more_reading
)
255 ret
= faad_showbits_rev(ld
, n
);
256 faad_flushbits_rev(ld
, n
);
260 fprintf(stdout
, "%4d %2d bits, val: %4d, variable: %d %s\n", dbg_count
++, n
, ret
, var
, dbg
);
267 static uint8_t faad_check_CRC(bitfile
*ld
, uint16_t len
)
270 uint16_t r
=255; /* Initialize to all ones */
272 /* CRC polynome used x^8 + x^4 + x^3 + x^2 +1 */
277 CRC
= (uint8_t) ~faad_getbits(ld
, 8
278 DEBUGVAR(1,999,"faad_check_CRC(): CRC")); /* CRC is stored inverted */
282 r
= ( (r
<< 1) ^ (( ( faad_get1bit(ld
283 DEBUGVAR(1,998,"")) & 1) ^ ((r
>> 7) & 1)) * GPOLY
)) & 0xFF;
294 static uint8_t tabFlipbits
[256] = {
295 0,128,64,192,32,160,96,224,16,144,80,208,48,176,112,240,
296 8,136,72,200,40,168,104,232,24,152,88,216,56,184,120,248,
297 4,132,68,196,36,164,100,228,20,148,84,212,52,180,116,244,
298 12,140,76,204,44,172,108,236,28,156,92,220,60,188,124,252,
299 2,130,66,194,34,162,98,226,18,146,82,210,50,178,114,242,
300 10,138,74,202,42,170,106,234,26,154,90,218,58,186,122,250,
301 6,134,70,198,38,166,102,230,22,150,86,214,54,182,118,246,
302 14,142,78,206,46,174,110,238,30,158,94,222,62,190,126,254,
303 1,129,65,193,33,161,97,225,17,145,81,209,49,177,113,241,
304 9,137,73,201,41,169,105,233,25,153,89,217,57,185,121,249,
305 5,133,69,197,37,165,101,229,21,149,85,213,53,181,117,245,
306 13,141,77,205,45,173,109,237,29,157,93,221,61,189,125,253,
307 3,131,67,195,35,163,99,227,19,147,83,211,51,179,115,243,
308 11,139,75,203,43,171,107,235,27,155,91,219,59,187,123,251,
309 7,135,71,199,39,167,103,231,23,151,87,215,55,183,119,247,
310 15,143,79,207,47,175,111,239,31,159,95,223,63,191,127,255
314 #ifdef ERROR_RESILIENCE
316 /* Modified bit reading functions for HCR */
327 static INLINE
uint32_t showbits_hcr(bits_t
*ld
, uint8_t bits
)
329 if (bits
== 0) return 0;
332 /* huffman_spectral_data_2 needs to read more than may be available, bits maybe
333 > ld->len, deliver 0 than */
335 return ((ld
->bufa
>> (ld
->len
- bits
)) & (0xFFFFFFFF >> (32 - bits
)));
337 return ((ld
->bufa
<< (bits
- ld
->len
)) & (0xFFFFFFFF >> (32 - bits
)));
339 if ((ld
->len
- bits
) < 32)
341 return ( (ld
->bufb
& (0xFFFFFFFF >> (64 - ld
->len
))) << (bits
- ld
->len
+ 32)) |
342 (ld
->bufa
>> (ld
->len
- bits
));
344 return ((ld
->bufb
>> (ld
->len
- bits
- 32)) & (0xFFFFFFFF >> (32 - bits
)));
349 /* return 1 if position is outside of buffer, 0 otherwise */
350 static INLINE
int8_t flushbits_hcr( bits_t
*ld
, uint8_t bits
)
363 static INLINE
int8_t getbits_hcr(bits_t
*ld
, uint8_t n
, uint32_t *result
)
365 *result
= showbits_hcr(ld
, n
);
366 return flushbits_hcr(ld
, n
);
369 static INLINE
int8_t get1bit_hcr(bits_t
*ld
, uint8_t *result
)
374 ret
= getbits_hcr(ld
, 1, &res
);
375 *result
= (int8_t)(res
& 1);