Commit 3496a20b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/flvdec: Change packet loop to return EAGAIN instead of looping until...

avformat/flvdec: Change packet loop to return EAGAIN instead of looping until a valid packet is foud
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 6d1801b5
...@@ -832,8 +832,10 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -832,8 +832,10 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
} }
} }
if (size == 0) if (size == 0) {
continue; ret = AVERROR(EAGAIN);
goto leave;
}
next = size + avio_tell(s->pb); next = size + avio_tell(s->pb);
...@@ -876,12 +878,15 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -876,12 +878,15 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
type, size, flags); type, size, flags);
skip: skip:
avio_seek(s->pb, next, SEEK_SET); avio_seek(s->pb, next, SEEK_SET);
continue; ret = AVERROR(EAGAIN);
goto leave;
} }
/* skip empty data packets */ /* skip empty data packets */
if (!size) if (!size) {
continue; ret = AVERROR(EAGAIN);
goto leave;
}
/* now find stream */ /* now find stream */
for (i = 0; i < s->nb_streams; i++) { for (i = 0; i < s->nb_streams; i++) {
...@@ -919,7 +924,8 @@ skip: ...@@ -919,7 +924,8 @@ skip:
|| st->discard >= AVDISCARD_ALL || st->discard >= AVDISCARD_ALL
) { ) {
avio_seek(s->pb, next, SEEK_SET); avio_seek(s->pb, next, SEEK_SET);
continue; ret = AVERROR(EAGAIN);
goto leave;
} }
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment