summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-04-04 19:50:46 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-04-04 19:50:46 +0000
commit5b403c40151474930b8ab9164b448ea697cbce9e (patch)
tree6e96d510167252d8815ddc87629eeb60558545d7 /libavcodec
parent5b0ad91b996506632708dcefc22d2835d04a4dba (diff)
emms was missing, found by juanjo but he didnt commit it?!
Originally committed as revision 374 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/mpeg12.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c
index 24fc5db85b..d983690119 100644
--- a/libavcodec/mpeg12.c
+++ b/libavcodec/mpeg12.c
@@ -1411,7 +1411,8 @@ static int mpeg_decode_slice(AVCodecContext *avctx,
break;
MPV_decode_mb(s, s->block);
}
-
+ emms_c();
+
/* end of slice reached */
if (s->mb_x == (s->mb_width - 1) &&
s->mb_y == (s->mb_height - 1)) {