mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-04 23:31:01 +00:00
avformat/flvdec: Remove dead loop
Fixes CID1325682 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
cb912b4521
commit
e34ba5ec53
@ -851,7 +851,6 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
|
|
||||||
retry:
|
retry:
|
||||||
/* pkt size is repeated at end. skip it */
|
/* pkt size is repeated at end. skip it */
|
||||||
for (;; last = avio_rb32(s->pb)) {
|
|
||||||
pos = avio_tell(s->pb);
|
pos = avio_tell(s->pb);
|
||||||
type = (avio_r8(s->pb) & 0x1F);
|
type = (avio_r8(s->pb) & 0x1F);
|
||||||
orig_size =
|
orig_size =
|
||||||
@ -975,8 +974,6 @@ skip:
|
|||||||
ret = AVERROR(EAGAIN);
|
ret = AVERROR(EAGAIN);
|
||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// if not streamed and no duration from metadata then seek to end to find
|
// if not streamed and no duration from metadata then seek to end to find
|
||||||
// the duration from the timestamps
|
// the duration from the timestamps
|
||||||
|
Loading…
Reference in New Issue
Block a user