comparison h264_cavlc.c @ 10893:2aafcafbe1f0 libavcodec

Replace cabac checks in inline functions from h264.h with constants. No benchmark because its just replacing variables with litteral constants (so no risk for slowdown outside gcc silliness) and i need sleep.
author michael
date Sat, 16 Jan 2010 05:41:33 +0000
parents 13a84faba50d
children 1b5fba731e24
comparison
equal deleted inserted replaced
10892:e80dfe0c441b 10893:2aafcafbe1f0
22 /** 22 /**
23 * @file libavcodec/h264_cavlc.c 23 * @file libavcodec/h264_cavlc.c
24 * H.264 / AVC / MPEG4 part10 cavlc bitstream decoding. 24 * H.264 / AVC / MPEG4 part10 cavlc bitstream decoding.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27
28 #define CABAC 0
27 29
28 #include "internal.h" 30 #include "internal.h"
29 #include "avcodec.h" 31 #include "avcodec.h"
30 #include "mpegvideo.h" 32 #include "mpegvideo.h"
31 #include "h264.h" 33 #include "h264.h"