diff h264_cabac.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 7101061bfa0f
children 1b5fba731e24
line wrap: on
line diff
--- a/h264_cabac.c	Sat Jan 16 04:49:02 2010 +0000
+++ b/h264_cabac.c	Sat Jan 16 05:41:33 2010 +0000
@@ -25,6 +25,8 @@
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
 
+#define CABAC 1
+
 #include "internal.h"
 #include "dsputil.h"
 #include "avcodec.h"