diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-07-03 08:53:35 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-07-03 08:53:35 +0200 |
commit | 93a73df54dd92f294c3e84a753c75c64513b4c18 (patch) | |
tree | 29311b735bd31fd026c1de39ef7c5d3af1bfd34b /libavfilter | |
parent | be1643be314042e24927b09663156f5406ceb339 (diff) | |
download | ffmpeg-93a73df54dd92f294c3e84a753c75c64513b4c18.tar.gz |
avfilter/af_deesser: remove extra ;
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_deesser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_deesser.c b/libavfilter/af_deesser.c index 2f57d51226..fad3e98f5c 100644 --- a/libavfilter/af_deesser.c +++ b/libavfilter/af_deesser.c @@ -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; } |