mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
skip empty data packets in flv, fix input.flv
Originally committed as revision 18306 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
60c703ac4b
commit
fcb4228c86
@ -439,6 +439,10 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
}
|
||||
}
|
||||
|
||||
/* skip empty data packets */
|
||||
if (!size)
|
||||
return AVERROR(EAGAIN);
|
||||
|
||||
ret= av_get_packet(s->pb, pkt, size);
|
||||
if (ret <= 0) {
|
||||
return AVERROR(EIO);
|
||||
|
Loading…
Reference in New Issue
Block a user