summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.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/h263dec.c
parent54974c62982ae827becdbdb9b620b7ba75d079a0 (diff)
mpegvideo: split ff_draw_horiz_band().
Split out dependency on MpegEncContext.
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index b1a32b2f37..e24603bc10 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -235,7 +235,7 @@ static int decode_slice(MpegEncContext *s){
if(++s->mb_x >= s->mb_width){
s->mb_x=0;
- ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
+ ff_mpeg_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
ff_MPV_report_decode_progress(s);
s->mb_y++;
}
@@ -256,7 +256,7 @@ static int decode_slice(MpegEncContext *s){
ff_h263_loop_filter(s);
}
- ff_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
+ ff_mpeg_draw_horiz_band(s, s->mb_y*mb_size, mb_size);
ff_MPV_report_decode_progress(s);
s->mb_x= 0;