comparison cabac.h @ 3284:a224d9752912 libavcodec

don't force asserts in release builds. 2% faster h264.
author lorenm
date Sat, 29 Apr 2006 00:43:15 +0000
parents 0b546eab515d
children 0efda682253c
comparison
equal deleted inserted replaced
3283:c53ef1f63575 3284:a224d9752912
22 * @file cabac.h 22 * @file cabac.h
23 * Context Adaptive Binary Arithmetic Coder. 23 * Context Adaptive Binary Arithmetic Coder.
24 */ 24 */
25 25
26 26
27 #undef NDEBUG 27 //#undef NDEBUG
28 #include <assert.h> 28 #include <assert.h>
29 29
30 #define CABAC_BITS 8 30 #define CABAC_BITS 8
31 #define CABAC_MASK ((1<<CABAC_BITS)-1) 31 #define CABAC_MASK ((1<<CABAC_BITS)-1)
32 32