mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
parent
aa9ac1ce49
commit
3cdf0f9424
@ -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…
Reference in New Issue
Block a user