Commit 93a73df5 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_deesser: remove extra ;

parent be1643be
...@@ -107,7 +107,7 @@ static int config_input(AVFilterLink *inlink) ...@@ -107,7 +107,7 @@ static int config_input(AVFilterLink *inlink)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
for (int i = 0; i < inlink->channels; i++) { for (int i = 0; i < inlink->channels; i++) {
DeesserChannel *chan = &s->chan[i];; DeesserChannel *chan = &s->chan[i];
chan->ratioA = chan->ratioB = 1.0; chan->ratioA = chan->ratioB = 1.0;
} }
......
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