diff mbox

[FFmpeg-devel,13/13] avcodec/interplayvideo: Clear MMX state after ipvideo_decode_opcodes()

Message ID 20161022190211.16526-13-michael@niedermayer.cc
State New
Headers show

Commit Message

Michael Niedermayer Oct. 22, 2016, 7:02 p.m. UTC
Fixes last failing fate test on x86_64

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavcodec/interplayvideo.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index aa03015..66f6d23 100644
--- a/libavcodec/interplayvideo.c
+++ b/libavcodec/interplayvideo.c
@@ -1021,6 +1021,7 @@  static int ipvideo_decode_frame(AVCodecContext *avctx,
     }
 
     ipvideo_decode_opcodes(s, frame);
+    emms_c();
 
     *got_frame = 1;