summaryrefslogtreecommitdiff
path: root/libavcodec/ac3enc.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-12 08:35:26 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-04-12 08:35:26 +0000
commitb275500706ac3a20ac59bdb6ee080dc32f3254cf (patch)
treebe30dc8f35ba9c33d053b09fb70a09304d775512 /libavcodec/ac3enc.c
parent77daaf674815d201dcb9ebb435e3c48dc5e72253 (diff)
Split bitstream.h, put the bitstream writer stuff in the new file
put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index d68580150e..190bc38c1a 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -27,7 +27,8 @@
//#define DEBUG_BITALLOC
#include "libavutil/crc.h"
#include "avcodec.h"
-#include "bitstream.h"
+#include "bitstream.h" // for ff_reverse
+#include "put_bits.h"
#include "ac3.h"
typedef struct AC3EncodeContext {