avfilter/vf_fftdnoiz: Remove redundant ';'

These are actually null statements here and therefore lead
to -Wdeclaration-after-statement warnings.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
release/5.1
Andreas Rheinhardt 3 years ago
parent aa9ac1ce49
commit 3cdf0f9424
  1. 4
      libavfilter/vf_fftdnoiz.c

@ -398,7 +398,7 @@ static void filter_block3d2(FFTdnoizContext *s, int plane, float *pbuffer, float
for (int z = 0; z < 3; z++) {
const float re = outbuffer[z].re;
const float im = outbuffer[z].im;
const float power = re * re + im * im;;
const float power = re * re + im * im;
float factor;
switch (method) {
@ -456,7 +456,7 @@ static void filter_block3d1(FFTdnoizContext *s, int plane, float *pbuffer,
for (int z = 0; z < 2; z++) {
const float re = outbuffer[z].re;
const float im = outbuffer[z].im;
const float power = re * re + im * im;;
const float power = re * re + im * im;
float factor;
switch (method) {

Loading…
Cancel
Save