diff options
author | Janne Grunau <janne-libav@jannau.net> | 2013-03-14 15:12:30 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2013-03-14 15:16:08 +0100 |
commit | b066d90211072c7532e17c0c54d8475f10fc97ad (patch) | |
tree | 9443352c01f46c6a4e70146aaa88a30188f27154 | |
parent | 12e25ed284592b32c954d471e9b7b1e5a0dbf18d (diff) | |
download | ffmpeg-b066d90211072c7532e17c0c54d8475f10fc97ad.tar.gz |
vaapi: fix argument for ff_vaapi_common_end_frame call
-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 9c07c8d825..0532daf983 100644 --- a/libavcodec/vaapi.c +++ b/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; } |