avfilter/af_afftdn: Assert format
Maybe helps: CID1515514 Uninitialized scalar variable Maybe helps: CID1515517 Uninitialized scalar variable Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 8f9a6c4ea8de3e58f32622424c97203e6ba582c3) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9f2917aaf3
commit
315766e290
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
|
#include "libavutil/avassert.h"
|
||||||
#include "libavutil/avstring.h"
|
#include "libavutil/avstring.h"
|
||||||
#include "libavutil/channel_layout.h"
|
#include "libavutil/channel_layout.h"
|
||||||
#include "libavutil/opt.h"
|
#include "libavutil/opt.h"
|
||||||
@ -375,6 +376,8 @@ static void process_frame(AVFilterContext *ctx,
|
|||||||
case AV_SAMPLE_FMT_DBLP:
|
case AV_SAMPLE_FMT_DBLP:
|
||||||
noisy_data[i] = mag = hypot(fft_data_dbl[i].re, fft_data_dbl[i].im);
|
noisy_data[i] = mag = hypot(fft_data_dbl[i].re, fft_data_dbl[i].im);
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
av_assert2(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
power = mag * mag;
|
power = mag * mag;
|
||||||
@ -969,6 +972,8 @@ static void sample_noise_block(AudioFFTDeNoiseContext *s,
|
|||||||
mag2 = fft_out_dbl[n].re * fft_out_dbl[n].re +
|
mag2 = fft_out_dbl[n].re * fft_out_dbl[n].re +
|
||||||
fft_out_dbl[n].im * fft_out_dbl[n].im;
|
fft_out_dbl[n].im * fft_out_dbl[n].im;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
av_assert2(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
mag2 = fmax(mag2, s->sample_floor);
|
mag2 = fmax(mag2, s->sample_floor);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user