Browse Source

Do not use the mlib IDCT by default. We do not want videos which are only

decodable with the mlib IDCT. If anyone knows of other IDCTs which are not
binary identical to a widely available one, ensure that they are not used
by default. Such IDCTs should never have been default anyway, but possibly
something slipped through the reviews ...

Originally committed as revision 12666 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
6ea7e6516a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mlib/dsputil_mlib.c

+ 1
- 1
libavcodec/mlib/dsputil_mlib.c View File

@@ -455,7 +455,7 @@ void MPV_common_init_mlib(MpegEncContext *s)
s->dsp.fdct = ff_fdct_mlib;
}

if(s->avctx->idct_algo==FF_IDCT_AUTO || s->avctx->idct_algo==FF_IDCT_MLIB){
if(s->avctx->idct_algo==FF_IDCT_MLIB){
s->dsp.idct_put= ff_idct_put_mlib;
s->dsp.idct_add= ff_idct_add_mlib;
s->dsp.idct = ff_idct_mlib;


Loading…
Cancel
Save