diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-09-14 22:07:35 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-14 22:07:35 +0000 |
commit | 5596c60cceaee5f59ea67d71601f86c49b21d4fa (patch) | |
tree | 2ce8ef80c5be852304ab69dbaeb9b653b9d400d7 /libavcodec/dsputil.c | |
parent | b7c27ee601009168f874e9367286ae6a815d13b9 (diff) | |
download | ffmpeg-5596c60cceaee5f59ea67d71601f86c49b21d4fa.tar.gz |
dont store version for bit-exact tests
Originally committed as revision 948 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 9ee585c4d7..eb8592352e 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -44,6 +44,8 @@ op_pixels_abs_func pix_abs8x8_x2; op_pixels_abs_func pix_abs8x8_y2; op_pixels_abs_func pix_abs8x8_xy2; +int ff_bit_exact=0; + UINT8 cropTbl[256 + 2 * MAX_NEG_CROP]; UINT32 squareTbl[512]; @@ -1697,6 +1699,7 @@ void dsputil_init(void) /* remove any non bit exact operation (testing purpose) */ void avcodec_set_bit_exact(void) { + ff_bit_exact=1; #ifdef HAVE_MMX dsputil_set_bit_exact_mmx(); #endif |