comparison huffman.h @ 5881:aa110f457c5a libavcodec

Fix make checkheaders by adding missing #include.
author diego
date Wed, 07 Nov 2007 23:06:27 +0000
parents 1d83e9c34641
children e39e03d99d24
comparison
equal deleted inserted replaced
5880:6814207ffb27 5881:aa110f457c5a
22 22
23 #ifndef FFMPEG_HUFFMAN_H 23 #ifndef FFMPEG_HUFFMAN_H
24 #define FFMPEG_HUFFMAN_H 24 #define FFMPEG_HUFFMAN_H
25 25
26 #include "avcodec.h" 26 #include "avcodec.h"
27 #include "bitstream.h"
27 28
28 typedef struct { 29 typedef struct {
29 int16_t sym; 30 int16_t sym;
30 int16_t n0; 31 int16_t n0;
31 uint32_t count; 32 uint32_t count;