diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-10-31 11:47:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-10-31 11:47:58 +0000 |
commit | 0aa7875a730d98f912820e7032d1fc323e1432bb (patch) | |
tree | 102fecca026549295a3b247c5cd5568733091028 /libavcodec/mpegvideo.c | |
parent | 1609f6680cfaa63ae0e5524ce9ba9af617a604fb (diff) | |
download | ffmpeg-0aa7875a730d98f912820e7032d1fc323e1432bb.tar.gz |
cleanup
Originally committed as revision 1126 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 1e68e03e11..5571148b71 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -2147,6 +2147,8 @@ void ff_draw_horiz_band(MpegEncContext *s){ src_ptr[1] = s->last_picture[1] + (offset >> 2); src_ptr[2] = s->last_picture[2] + (offset >> 2); } + emms_c(); + s->avctx->draw_horiz_band(s->avctx, src_ptr, s->linesize, y, s->width, h); } |