mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
* oooooops - sorry for this one - wrong logic
empty dsp_mask - no change FORCE - add, no FORCE - enabled bits are masked out Originally committed as revision 1659 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c545ddcaac
commit
e5247b5f57
@ -1441,10 +1441,12 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
|
||||
{
|
||||
mm_flags = mm_support();
|
||||
|
||||
if (avctx->dsp_mask && FF_MM_FORCE)
|
||||
mm_flags |= (avctx->dsp_mask & 0xffff);
|
||||
else
|
||||
mm_flags &= (avctx->dsp_mask & 0xffff);
|
||||
if (avctx->dsp_mask) {
|
||||
if (avctx->dsp_mask & FF_MM_FORCE)
|
||||
mm_flags |= (avctx->dsp_mask & 0xffff);
|
||||
else
|
||||
mm_flags &= ~(avctx->dsp_mask & 0xffff);
|
||||
}
|
||||
|
||||
#if 0
|
||||
fprintf(stderr, "libavcodec: CPU flags:");
|
||||
|
Loading…
Reference in New Issue
Block a user