mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
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 8f9a6c4ea8)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user