diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-12 08:35:26 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-12 08:35:26 +0000 |
commit | b275500706ac3a20ac59bdb6ee080dc32f3254cf (patch) | |
tree | be30dc8f35ba9c33d053b09fb70a09304d775512 /libavcodec/lzwenc.c | |
parent | 77daaf674815d201dcb9ebb435e3c48dc5e72253 (diff) | |
download | ffmpeg-b275500706ac3a20ac59bdb6ee080dc32f3254cf.tar.gz |
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/lzwenc.c')
-rw-r--r-- | libavcodec/lzwenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lzwenc.c b/libavcodec/lzwenc.c index 4565b22c64..f3f66833a1 100644 --- a/libavcodec/lzwenc.c +++ b/libavcodec/lzwenc.c @@ -26,7 +26,7 @@ */ #include "avcodec.h" -#include "bitstream.h" +#include "put_bits.h" #include "lzw.h" #define LZW_MAXBITS 12 |