comparison rangecoder.h @ 5162:4394344397d8 libavcodec

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents ce36118abbbb
children 9ecbfc0c82bf
comparison
equal deleted inserted replaced
5161:94c3f01c243c 5162:4394344397d8
22 22
23 /** 23 /**
24 * @file rangecoder.h 24 * @file rangecoder.h
25 * Range coder. 25 * Range coder.
26 */ 26 */
27
28 #include <stdint.h>
29 #include <assert.h>
30 #include "common.h"
27 31
28 typedef struct RangeCoder{ 32 typedef struct RangeCoder{
29 int low; 33 int low;
30 int range; 34 int range;
31 int outstanding_count; 35 int outstanding_count;