diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-02-07 19:12:43 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-02-09 09:40:33 +0100 |
commit | aeaefc3728cb46dc1fb2c363785fed482f358d17 (patch) | |
tree | f9297230c409a2bf0fc98432032e0ef9e8c64eb3 | |
parent | 8b49436452bb99f70da24a254ef4cd45d0dbd496 (diff) | |
download | ffmpeg-aeaefc3728cb46dc1fb2c363785fed482f358d17.tar.gz |
lavfi/qsvpp: fix after 85c938fa28
-rw-r--r-- | libavfilter/qsvvpp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavfilter/qsvvpp.c b/libavfilter/qsvvpp.c index 35769dfd60..954f882637 100644 --- a/libavfilter/qsvvpp.c +++ b/libavfilter/qsvvpp.c @@ -796,7 +796,7 @@ int ff_qsvvpp_filter_frame(QSVVPPContext *s, AVFilterLink *inlink, AVFrame *picr AVFilterLink *outlink = ctx->outputs[0]; QSVAsyncFrame aframe; mfxSyncPoint sync; - QSVFrame *in_frame, *out_frame, *tmp; + QSVFrame *in_frame, *out_frame; int ret, filter_ret; while (s->eof && av_fifo_read(s->async_fifo, &aframe, 1) >= 0) { @@ -857,15 +857,15 @@ int ff_qsvvpp_filter_frame(QSVVPPContext *s, AVFilterLink *inlink, AVFrame *picr ret = MFXVideoCORE_SyncOperation(s->session, aframe.sync, 1000); } while (ret == MFX_WRN_IN_EXECUTION); - filter_ret = s->filter_frame(outlink, tmp->frame); + filter_ret = s->filter_frame(outlink, aframe.frame->frame); if (filter_ret < 0) { - av_frame_free(&tmp->frame); + av_frame_free(&aframe.frame->frame); return filter_ret; } - tmp->queued--; + aframe.frame->queued--; s->got_frame = 1; - tmp->frame = NULL; + aframe.frame->frame = NULL; } } while(ret == MFX_ERR_MORE_SURFACE); |