diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:51:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:51:59 +0200 |
commit | 3cdf0f9424e51c1cf7891b71667e2c4e7f7cb362 (patch) | |
tree | e813402eff2b45095edca112cc0b25ef6ad7df72 /libavfilter | |
parent | aa9ac1ce494be01b5beb15ca704b82f0c43b677b (diff) | |
download | ffmpeg-3cdf0f9424e51c1cf7891b71667e2c4e7f7cb362.tar.gz |
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>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_fftdnoiz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_fftdnoiz.c b/libavfilter/vf_fftdnoiz.c index 2da9b25baf..cec7466528 100644 --- a/libavfilter/vf_fftdnoiz.c +++ b/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) { |