You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Do not fail on zero packets.
Originally committed as revision 18328 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		| @@ -444,7 +444,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) | ||||
|         return AVERROR(EAGAIN); | ||||
|  | ||||
|     ret= av_get_packet(s->pb, pkt, size); | ||||
|     if (ret <= 0) { | ||||
|     if (ret < 0) { | ||||
|         return AVERROR(EIO); | ||||
|     } | ||||
|     /* note: we need to modify the packet size here to handle the last | ||||
|   | ||||
		Reference in New Issue
	
	Block a user