You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avcodec/g726: Fix runtime error: left shift of negative value -2
Fixes: 1393/clusterfuzz-testcase-minimized-5948366791901184 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
		| @@ -269,7 +269,7 @@ static int16_t g726_decode(G726Context* c, int I) | ||||
|         c->se += mult(i2f(c->a[i] >> 2, &f), &c->sr[i]); | ||||
|     c->se >>= 1; | ||||
|  | ||||
|     return av_clip(re_signal << 2, -0xffff, 0xffff); | ||||
|     return av_clip(re_signal * 4, -0xffff, 0xffff); | ||||
| } | ||||
|  | ||||
| static av_cold int g726_reset(G726Context *c) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user