comparison ac3dec.c @ 5314:7da10ff9dab1 libavcodec

AC-3 decoder, soc revision 54, Aug 17 09:13:08 2006 UTC by cloud9 Remove unnecessary header files.
author jbr
date Sat, 14 Jul 2007 16:00:38 +0000
parents 4bd60d3bab7e
children 31033309ebc9
comparison
equal deleted inserted replaced
5313:4bd60d3bab7e 5314:7da10ff9dab1
18 */ 18 */
19 19
20 #include <stdio.h> 20 #include <stdio.h>
21 #include <stddef.h> 21 #include <stddef.h>
22 #include <math.h> 22 #include <math.h>
23 #include <inttypes.h>
24 #include <string.h> 23 #include <string.h>
25 24
26 #define ALT_BITSTREAM_READER 25 #define ALT_BITSTREAM_READER
27 26
28 #include "ac3tab.h" 27 #include "ac3tab.h"
29 #include "ac3.h"
30 #include "ac3_decoder.h" 28 #include "ac3_decoder.h"
31 #include "avcodec.h" 29 #include "avcodec.h"
32 #include "bitstream.h" 30 #include "bitstream.h"
33 #include "dsputil.h" 31 #include "dsputil.h"
34 #include "avutil.h" 32 #include "avutil.h"
35 #include "common.h" 33 #include "common.h"
36 #include "math.h"
37 #include "crc.h"
38 34
39 #define N 512 /* constant for IMDCT Block size */ 35 #define N 512 /* constant for IMDCT Block size */
40 36
41 #define MAX_CHANNELS 6 37 #define MAX_CHANNELS 6
42 #define BLOCK_SIZE 256 38 #define BLOCK_SIZE 256