[FFmpeg-cvslog] avfilter/vf_fftdnoiz: Remove redundant ';'

Andreas Rheinhardt git at videolan.org
Fri May 6 06:53:34 EEST 2022


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri May  6 05:51:59 2022 +0200| [3cdf0f9424e51c1cf7891b71667e2c4e7f7cb362] | committer: Andreas Rheinhardt

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 at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3cdf0f9424e51c1cf7891b71667e2c4e7f7cb362
---

 libavfilter/vf_fftdnoiz.c | 4 ++--
 1 file 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) {



More information about the ffmpeg-cvslog mailing list