You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avformat/asfdec_f: Use 64bit for preroll computation
Fixes: CID1500342 Unintentional integer overflow
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 70b4994762)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
			
			
This commit is contained in:
		| @@ -674,7 +674,7 @@ static int asf_read_marker(AVFormatContext *s) | ||||
|  | ||||
|         avio_rl64(pb);             // offset, 8 bytes | ||||
|         pres_time = avio_rl64(pb); // presentation time | ||||
|         pres_time = av_sat_sub64(pres_time, asf->hdr.preroll * 10000); | ||||
|         pres_time = av_sat_sub64(pres_time, asf->hdr.preroll * 10000LL); | ||||
|         avio_rl16(pb);             // entry length | ||||
|         avio_rl32(pb);             // send time | ||||
|         avio_rl32(pb);             // flags | ||||
|   | ||||
		Reference in New Issue
	
	Block a user