You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	avformat/asfdec: pass on error code from avio_seek()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -1473,8 +1473,8 @@ static int asf_build_simple_index(AVFormatContext *s, int stream_index) | ||||
|     int64_t current_pos = avio_tell(s->pb); | ||||
|     int ret = 0; | ||||
|  | ||||
|     if(avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET) < 0) { | ||||
|         return AVERROR_INVALIDDATA; | ||||
|     if((ret = avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET)) < 0) { | ||||
|         return ret; | ||||
|     } | ||||
|  | ||||
|     if ((ret = ff_get_guid(s->pb, &g)) < 0) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user