You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +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>
This commit is contained in:
		| @@ -20,6 +20,7 @@ | ||||
|  | ||||
| #include <float.h> | ||||
|  | ||||
| #include "libavutil/avassert.h" | ||||
| #include "libavutil/avstring.h" | ||||
| #include "libavutil/channel_layout.h" | ||||
| #include "libavutil/mem.h" | ||||
| @@ -376,6 +377,8 @@ static void process_frame(AVFilterContext *ctx, | ||||
|         case AV_SAMPLE_FMT_DBLP: | ||||
|             noisy_data[i] = mag = hypot(fft_data_dbl[i].re, fft_data_dbl[i].im); | ||||
|             break; | ||||
|         default: | ||||
|             av_assert2(0); | ||||
|         } | ||||
|  | ||||
|         power = mag * mag; | ||||
| @@ -970,6 +973,8 @@ static void sample_noise_block(AudioFFTDeNoiseContext *s, | ||||
|             mag2 = fft_out_dbl[n].re * fft_out_dbl[n].re + | ||||
|                    fft_out_dbl[n].im * fft_out_dbl[n].im; | ||||
|             break; | ||||
|         default: | ||||
|             av_assert2(0); | ||||
|         } | ||||
|  | ||||
|         mag2 = fmax(mag2, s->sample_floor); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user