summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2007-07-14 16:00:38 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2007-07-14 16:00:38 +0000
commit3ff88ff45a00bb76bbd5b562a083918edbb695ae (patch)
tree111a8b640aea1cfb53add73069189e8c5fa6b053
parent262d8702a9782d3f09f218bca39e6e0cb26302c0 (diff)
AC-3 decoder, soc revision 54, Aug 17 09:13:08 2006 UTC by cloud9
Remove unnecessary header files. Originally committed as revision 9662 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ac3dec.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index b341cb5d64..2e1de2e8f3 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -20,21 +20,17 @@
#include <stdio.h>
#include <stddef.h>
#include <math.h>
-#include <inttypes.h>
#include <string.h>
#define ALT_BITSTREAM_READER
#include "ac3tab.h"
-#include "ac3.h"
#include "ac3_decoder.h"
#include "avcodec.h"
#include "bitstream.h"
#include "dsputil.h"
#include "avutil.h"
#include "common.h"
-#include "math.h"
-#include "crc.h"
#define N 512 /* constant for IMDCT Block size */