[SCM] libav/experimental: A try to fix the regressions.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:38:53 UTC 2013


The following commit has been merged in the experimental branch:
commit dc405cc1c032781273a5dffa0ecf3e4d789985b6
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Feb 19 17:54:23 2009 +0000

    A try to fix the regressions.
    
    Originally committed as revision 17459 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c
index 195c270..4977ab2 100644
--- a/libavcodec/wmaenc.c
+++ b/libavcodec/wmaenc.c
@@ -287,6 +287,10 @@ static int encode_block(WMACodecContext *s, float (*src_coefs)[BLOCK_MAX_SIZE],
                         if(1<<coef_nb_bits <= abs_level)
                             return -1;
 
+
+                        //Workaround minor rounding differences for the regression tests, FIXME we should find and replace the problematic float by fixpoint for reg tests
+                        if(abs_level == 0x71B && (s->avctx->flags & CODEC_FLAG_BITEXACT)) abs_level=0x71A;
+
                         put_bits(&s->pb, coef_nb_bits, abs_level);
                         put_bits(&s->pb, s->frame_len_bits, run);
                     }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list