changeset 3990:746a60ba3177 libavcodec

enable CMOV_IS_FAST as its faster or equal speed on every cpu (duron, athlon, PM, P3) from which ive seen benchmarks, it might be slower on P4 but noone has posted benchmarks ...
author michael
date Wed, 11 Oct 2006 12:23:40 +0000
parents eddcc352c0dc
children 72bae00a317f
files cabac.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/cabac.h	Wed Oct 11 10:29:00 2006 +0000
+++ b/cabac.h	Wed Oct 11 12:23:40 2006 +0000
@@ -32,6 +32,7 @@
 #define CABAC_BITS 16
 #define CABAC_MASK ((1<<CABAC_BITS)-1)
 #define BRANCHLESS_CABAC_DECODER 1
+#define CMOV_IS_FAST 1
 
 typedef struct CABACContext{
     int low;