comparison rangecoder.h @ 2337:841a111be02c libavcodec

remove debug stuff
author michael
date Sun, 31 Oct 2004 02:51:39 +0000
parents 25448d0bc924
children e25782262d7d
comparison
equal deleted inserted replaced
2336:9cd834fc7325 2337:841a111be02c
20 20
21 /** 21 /**
22 * @file rangecoder.h 22 * @file rangecoder.h
23 * Range coder. 23 * Range coder.
24 */ 24 */
25
26
27 #undef NDEBUG
28 #include <assert.h>
29 25
30 typedef struct RangeCoder{ 26 typedef struct RangeCoder{
31 int low; 27 int low;
32 int range; 28 int range;
33 int outstanding_count; 29 int outstanding_count;