forked from FFmpeg/FFmpeg
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
1 changed files with 4 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue