Commit d0a863ac authored by Anton Khirnov's avatar Anton Khirnov

vf_hqdn3d: fix uninitialized variable use

CC:libav-stable@libav.org
parent 887d31d4
......@@ -316,6 +316,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
direct = 1;
out = in;
} else {
direct = 0;
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out) {
av_frame_free(&in);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment