avfilter/af_deesser: remove extra ;

This commit is contained in:
Paul B Mahol 2019-07-03 08:53:35 +02:00
parent be1643be31
commit 93a73df54d
1 changed files with 1 additions and 1 deletions

View File

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