diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-03 14:26:34 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-02-15 16:10:19 +0100 |
commit | 1d0feb5d1ac04d187b335f0e8d411c9f40b3a885 (patch) | |
tree | 2f79cfd6851b679b4d1d479355db3777a36b239c /libavcodec/vaapi.c | |
parent | 54974c62982ae827becdbdb9b620b7ba75d079a0 (diff) | |
download | ffmpeg-1d0feb5d1ac04d187b335f0e8d411c9f40b3a885.tar.gz |
mpegvideo: split ff_draw_horiz_band().
Split out dependency on MpegEncContext.
Diffstat (limited to 'libavcodec/vaapi.c')
-rw-r--r-- | libavcodec/vaapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi.c b/libavcodec/vaapi.c index d6b0298ee0..b74604eda3 100644 --- a/libavcodec/vaapi.c +++ b/libavcodec/vaapi.c @@ -187,7 +187,7 @@ int ff_vaapi_common_end_frame(MpegEncContext *s) if (vactx->n_slice_buf_ids > 0) { if (render_picture(vactx, ff_vaapi_get_surface_id(s->current_picture_ptr)) < 0) goto done; - ff_draw_horiz_band(s, 0, s->avctx->height); + ff_mpeg_draw_horiz_band(s, 0, s->avctx->height); } ret = 0; |