comparison lzwenc.c @ 9411:4cb7c65fc775 libavcodec

Split bitstream.h, put the bitstream writer stuff in the new file put_bits.h.
author stefano
date Sun, 12 Apr 2009 08:35:26 +0000
parents c1e6aaea75f2
children e15eb76d9e47
comparison
equal deleted inserted replaced
9410:f7bd7e90ef9f 9411:4cb7c65fc775
24 * @file libavcodec/lzwenc.c 24 * @file libavcodec/lzwenc.c
25 * @author Bartlomiej Wolowiec 25 * @author Bartlomiej Wolowiec
26 */ 26 */
27 27
28 #include "avcodec.h" 28 #include "avcodec.h"
29 #include "bitstream.h" 29 #include "put_bits.h"
30 #include "lzw.h" 30 #include "lzw.h"
31 31
32 #define LZW_MAXBITS 12 32 #define LZW_MAXBITS 12
33 #define LZW_SIZTABLE (1<<LZW_MAXBITS) 33 #define LZW_SIZTABLE (1<<LZW_MAXBITS)
34 #define LZW_HASH_SIZE 16411 34 #define LZW_HASH_SIZE 16411