Mercurial > libavcodec.hg
changeset 7880:2d3d9b4181d7 libavcodec
Ensure MMX/SSE2 VP3 IDCT selection isn't disabled when only Theora is enabled
author | conrad |
---|---|
date | Wed, 17 Sep 2008 19:49:31 +0000 |
parents | e05e021fce72 |
children | 1e99834a163b |
files | i386/dsputil_mmx.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/i386/dsputil_mmx.c Wed Sep 17 19:38:44 2008 +0000 +++ b/i386/dsputil_mmx.c Wed Sep 17 19:49:31 2008 +0000 @@ -2527,7 +2527,7 @@ } 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;