diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-03-14 15:12:30 +0100 |
---|---|---|
committer | BtbN <btbn@btbn.de> | 2013-04-13 03:27:02 +0200 |
commit | 29c291cf26d975a37aaefcadabd89fcc263e39dd (patch) | |
tree | c77d2fc62e8b9c927a8feae53091ba719820828c /lib/ffmpeg/libavcodec | |
parent | c01c97d9d141162f8221e8cdb6ec20b6b5fa1268 (diff) |
vaapi: fix argument for ff_vaapi_common_end_frame call
Diffstat (limited to 'lib/ffmpeg/libavcodec')
-rw-r--r-- | lib/ffmpeg/libavcodec/vaapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ffmpeg/libavcodec/vaapi.c b/lib/ffmpeg/libavcodec/vaapi.c index fc869bdc61..a220a9d3c2 100644 --- a/lib/ffmpeg/libavcodec/vaapi.c +++ b/lib/ffmpeg/libavcodec/vaapi.c @@ -212,7 +212,7 @@ int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx) ff_mpeg_draw_horiz_band(s, 0, s->avctx->height); finish: - ff_vaapi_common_end_frame(avctx->priv_data); + ff_vaapi_common_end_frame(avctx); return ret; } |