summaryrefslogtreecommitdiff
path: root/libavformat/flvdec.c
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2017-10-27 08:26:11 +0800
committerSteven Liu <lq@chinaffmpeg.org>2017-10-27 08:26:11 +0800
commit171adca696ee1f507d698940a35ccf7a85c5d072 (patch)
tree389b0b675428a43cd4c5d401b36c7f0b56fcd4eb /libavformat/flvdec.c
parent61e25ab0bf9f2be44ebce555f205561c34b674ee (diff)
Revert "flvdec: Check the avio_seek return value after reading a metadata packet"
This reverts commit ef7fe81b8554a2865d47a55edf47420878fa3d91.
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r--libavformat/flvdec.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 2d89bef15f..2e70352c53 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -1015,13 +1015,7 @@ retry:
"Skipping flv packet: type %d, size %d, flags %d.\n",
type, size, flags);
skip:
- if (avio_seek(s->pb, next, SEEK_SET) != next) {
- // This can happen if flv_read_metabody above read past
- // next, on a non-seekable input, and the preceding data has
- // been flushed out from the IO buffer.
- av_log(s, AV_LOG_ERROR, "Unable to seek to the next packet\n");
- return AVERROR_INVALIDDATA;
- }
+ avio_seek(s->pb, next, SEEK_SET);
ret = FFERROR_REDO;
goto leave;
}