summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-11 12:23:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-11 12:23:40 +0000
commit3650b43959cdd2fbe6fa9cff3208c2e953c9faee (patch)
tree9ac22e261acf12c5de42759ad4ac2fd2b6a4def4 /libavcodec
parenta8824a790ffba4fe63b219ad82d902dff1823367 (diff)
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 ...
Originally committed as revision 6652 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cabac.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index a677d0f87e..f5e4e03e99 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -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;