[SCM] libav/experimental: Ensure MMX/SSE2 VP3 IDCT selection isn't disabled when only Theora is enabled

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:30:16 UTC 2013


The following commit has been merged in the experimental branch:
commit 8cfd78ce8ffa59d6286a09664f8e65fe591ba23f
Author: David Conrad <lessen42 at gmail.com>
Date:   Wed Sep 17 19:49:31 2008 +0000

    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

diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c
index 1ee9a2e..6e1a93d 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list