You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	swr/resample: fix integer overflow, add missing cast
The effects of this are limited to numeric errors in the output Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -151,7 +151,7 @@ int RENAME(swri_resample)(ResampleContext *c, DELEM *dst, const DELEM *src, int | ||||
|                 break; | ||||
|             }else if(sample_index < 0){ | ||||
|                 for(i=0; i<c->filter_length; i++) | ||||
|                     val += src[FFABS(sample_index + i)] * filter[i]; | ||||
|                     val += src[FFABS(sample_index + i)] * (FELEM2)filter[i]; | ||||
|             }else if(c->linear){ | ||||
|                 FELEM2 v2=0; | ||||
|                 for(i=0; i<c->filter_length; i++){ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user