diff options
author | Måns Rullgård <mans@mansr.com> | 2010-08-24 17:47:05 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-08-24 17:47:05 +0000 |
commit | c0ec9918b066c6bfca8613ac75b589bd3e405971 (patch) | |
tree | d037260d347ffce71a1ccdbaca81174e190a25d1 /libavcodec/h263dec.c | |
parent | 3611c45ab757d03cf3878af62ca1c19ae8386037 (diff) | |
download | ffmpeg-c0ec9918b066c6bfca8613ac75b589bd3e405971.tar.gz |
Remove global mm_flags variable
Originally committed as revision 24909 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index d9d6f7e5d6..9091042abb 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -553,7 +553,7 @@ retry: #endif #if HAVE_MMX - if(s->codec_id == CODEC_ID_MPEG4 && s->xvid_build>=0 && avctx->idct_algo == FF_IDCT_AUTO && (mm_flags & FF_MM_MMX)){ + if(s->codec_id == CODEC_ID_MPEG4 && s->xvid_build>=0 && avctx->idct_algo == FF_IDCT_AUTO && (mm_support() & FF_MM_MMX)){ avctx->idct_algo= FF_IDCT_XVIDMMX; avctx->coded_width= 0; // force reinit // dsputil_init(&s->dsp, avctx); |