From 3cdf0f9424e51c1cf7891b71667e2c4e7f7cb362 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 6 May 2022 05:51:59 +0200 Subject: [PATCH] avfilter/vf_fftdnoiz: Remove redundant ';' These are actually null statements here and therefore lead to -Wdeclaration-after-statement warnings. Signed-off-by: Andreas Rheinhardt --- 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) {