mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Do not fail on zero packets.
Originally committed as revision 18328 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0be9e73e38
commit
634b927f82
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user