Skip to content
Snippets Groups Projects
Commit ee0c00d3 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

use libmpeg2 idct to decode xvid videos unless the user forced some other idct

Originally committed as revision 3251 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8176bd1a
No related branches found
No related tags found
No related merge requests found
...@@ -623,7 +623,11 @@ retry: ...@@ -623,7 +623,11 @@ retry:
fprintf(f, "%d %d %f\n", buf_size, s->qscale, buf_size*(double)s->qscale); fprintf(f, "%d %d %f\n", buf_size, s->qscale, buf_size*(double)s->qscale);
} }
#endif #endif
if(s->codec_id == CODEC_ID_MPEG4 && s->xvid_build && avctx->idct_algo == FF_IDCT_AUTO && (mm_flags & MM_MMX) && !(s->flags&CODEC_FLAG_BITEXACT)){
avctx->idct_algo= FF_IDCT_LIBMPEG2MMX;
avctx->width= 0; // force reinit
}
/* After H263 & mpeg4 header decode we have the height, width,*/ /* After H263 & mpeg4 header decode we have the height, width,*/
/* and other parameters. So then we could init the picture */ /* and other parameters. So then we could init the picture */
/* FIXME: By the way H263 decoder is evolving it should have */ /* FIXME: By the way H263 decoder is evolving it should have */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment