mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue