summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-03 14:26:34 +0100
committerAnton Khirnov <anton@khirnov.net>2013-02-15 16:10:19 +0100
commit1d0feb5d1ac04d187b335f0e8d411c9f40b3a885 (patch)
tree2f79cfd6851b679b4d1d479355db3777a36b239c /libavcodec/svq3.c
parent54974c62982ae827becdbdb9b620b7ba75d079a0 (diff)
mpegvideo: split ff_draw_horiz_band().
Split out dependency on MpegEncContext.
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 9e6cb28bee..ee54a173d8 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -1126,7 +1126,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
(s->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1;
}
- ff_draw_horiz_band(s, 16 * s->mb_y, 16);
+ ff_mpeg_draw_horiz_band(s, 16 * s->mb_y, 16);
}
ff_MPV_frame_end(s);