mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-11 03:32:39 +00:00
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
This commit is contained in:
parent
c3c5bba1e2
commit
8cfd78ce8f
@ -2527,7 +2527,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
|
|||||||
}
|
}
|
||||||
c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;
|
c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM;
|
||||||
#endif
|
#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){
|
idct_algo==FF_IDCT_VP3){
|
||||||
if(mm_flags & MM_SSE2){
|
if(mm_flags & MM_SSE2){
|
||||||
c->idct_put= ff_vp3_idct_put_sse2;
|
c->idct_put= ff_vp3_idct_put_sse2;
|
||||||
|
Loading…
Reference in New Issue
Block a user