[FFmpeg-cvslog] r17459 - trunk/libavcodec/wmaenc.c

Carl Eugen Hoyos cehoyos
Thu Feb 19 23:54:50 CET 2009


michael <subversion <at> mplayerhq.hu> writes:

> Modified: trunk/libavcodec/wmaenc.c
> ==============================================================================
> --- trunk/libavcodec/wmaenc.c	Thu Feb 19 13:21:09 2009	(r17458)
> +++ trunk/libavcodec/wmaenc.c	Thu Feb 19 18:54:23 2009	(r17459)
> @@ -287,6 +287,10 @@ static int encode_block(WMACodecContext 
>                          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;

Very impressive!

Mike, could you add --host-cc=gcc to the icc fate test configure line?
--cpu=core2 is not necessary any more, in case you prefer shorter configure
lines.

Carl Eugen






More information about the ffmpeg-cvslog mailing list