[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec vorbis.c,1.7,1.8
Rich Felker
dalias
Mon May 30 17:30:28 CEST 2005
On Mon, May 30, 2005 at 05:03:09PM +0200, Michael Niedermayer CVS wrote:
> Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
> In directory mail:/var2/tmp/cvs-serv32569
>
> Modified Files:
> vorbis.c
> Log Message:
> optimizations
>
>
> + if(tmp & 0xf0000){
> +// tmp= (0x43c0ffff - tmp)>>31; //ask gcc devs why this is slower
> + if(tmp > 0x43c0ffff) tmp= 0xFFFF;
> + else tmp= 0;
ROTFL :)))
Rich
More information about the ffmpeg-cvslog
mailing list