comparison huffman.h @ 9428:0dce4fe6e6f3 libavcodec

Rename bitstream.h to get_bits.h.
author stefano
date Mon, 13 Apr 2009 16:20:26 +0000
parents e9d9d946f213
children 7dd2a45249a9
comparison
equal deleted inserted replaced
9427:4c1fb7723412 9428:0dce4fe6e6f3
22 22
23 #ifndef AVCODEC_HUFFMAN_H 23 #ifndef AVCODEC_HUFFMAN_H
24 #define AVCODEC_HUFFMAN_H 24 #define AVCODEC_HUFFMAN_H
25 25
26 #include "avcodec.h" 26 #include "avcodec.h"
27 #include "bitstream.h" 27 #include "get_bits.h"
28 28
29 typedef struct { 29 typedef struct {
30 int16_t sym; 30 int16_t sym;
31 int16_t n0; 31 int16_t n0;
32 uint32_t count; 32 uint32_t count;