Commit 9e1914df authored by Clément Bœsch's avatar Clément Bœsch

lavfi/hqdn3d: avoid use of uninitialized variable.

parent a3554bb4
......@@ -327,7 +327,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
AVFilterLink *outlink = inlink->dst->outputs[0];
AVFilterBufferRef *out;
int direct, c;
int direct = 0, c;
if (in->perms & AV_PERM_WRITE) {
direct = 1;
......
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