diff options
author | David Conrad <lessen42@gmail.com> | 2008-09-17 19:49:31 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2008-09-17 19:49:31 +0000 |
commit | 8cfd78ce8ffa59d6286a09664f8e65fe591ba23f (patch) | |
tree | 9f5868d295e302b193903a8443f526ba094628a8 /libavcodec/i386/dsputil_mmx.c | |
parent | c3c5bba1e29bb2657dada4db5ee66d186d1cbc50 (diff) | |
download | ffmpeg-8cfd78ce8ffa59d6286a09664f8e65fe591ba23f.tar.gz |
Ensure MMX/SSE2 VP3 IDCT selection isn't disabled when only Theora is enabled
Originally committed as revision 15350 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.c')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 1ee9a2e513..6e1a93d711 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -2527,7 +2527,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx) } c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM; #endif - }else if((ENABLE_VP3_DECODER || ENABLE_VP5_DECODER || ENABLE_VP6_DECODER) && + }else if((ENABLE_VP3_DECODER || ENABLE_VP5_DECODER || ENABLE_VP6_DECODER || ENABLE_THEORA_DECODER) && idct_algo==FF_IDCT_VP3){ if(mm_flags & MM_SSE2){ c->idct_put= ff_vp3_idct_put_sse2; |