You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +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:
@@ -398,7 +398,7 @@ static void filter_block3d2(FFTdnoizContext *s, int plane, float *pbuffer, float
|
|||||||
for (int z = 0; z < 3; z++) {
|
for (int z = 0; z < 3; z++) {
|
||||||
const float re = outbuffer[z].re;
|
const float re = outbuffer[z].re;
|
||||||
const float im = outbuffer[z].im;
|
const float im = outbuffer[z].im;
|
||||||
const float power = re * re + im * im;;
|
const float power = re * re + im * im;
|
||||||
float factor;
|
float factor;
|
||||||
|
|
||||||
switch (method) {
|
switch (method) {
|
||||||
@@ -456,7 +456,7 @@ static void filter_block3d1(FFTdnoizContext *s, int plane, float *pbuffer,
|
|||||||
for (int z = 0; z < 2; z++) {
|
for (int z = 0; z < 2; z++) {
|
||||||
const float re = outbuffer[z].re;
|
const float re = outbuffer[z].re;
|
||||||
const float im = outbuffer[z].im;
|
const float im = outbuffer[z].im;
|
||||||
const float power = re * re + im * im;;
|
const float power = re * re + im * im;
|
||||||
float factor;
|
float factor;
|
||||||
|
|
||||||
switch (method) {
|
switch (method) {
|
||||||
|
Reference in New Issue
Block a user