summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-29 14:14:46 +0100
committerDiego Biurrun <diego@biurrun.de>2014-01-29 16:37:23 +0100
commit54b2ce7418c0e1467c9e67274e55e1bd86189e63 (patch)
tree39a4bdc6aecbbacfab1b8789cc0829feabe45389 /libavcodec/svq3.c
parentb7d0d10a1d54073501b728dbe166a32e2b7b26f1 (diff)
mpeg: Drop unused parameters from ff_draw_horiz_band()
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 1d1f77aade..fac95eed53 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -1267,9 +1267,10 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
(h->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1;
}
- ff_draw_horiz_band(avctx, NULL, s->cur_pic, s->last_pic->f.data[0] ? s->last_pic : NULL,
+ ff_draw_horiz_band(avctx, s->cur_pic,
+ s->last_pic->f.data[0] ? s->last_pic : NULL,
16 * h->mb_y, 16, h->picture_structure, 0,
- h->low_delay, h->mb_height * 16, h->mb_width * 16);
+ h->low_delay);
}
if (h->pict_type == AV_PICTURE_TYPE_B || h->low_delay)