Browse Source

lavfi/hqdn3d: avoid use of uninitialized variable.

tags/n1.1
Clément Bœsch 13 years ago
parent
commit
9e1914dfba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_hqdn3d.c

+ 1
- 1
libavfilter/vf_hqdn3d.c View File

@@ -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;


Loading…
Cancel
Save