--- libavformat/matroskadec.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index b51f67af00..944ed795d5 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -3532,8 +3532,12 @@ static int matroska_read_seek(AVFormatContext *s, int stream_index, int64_t pos = avio_tell(matroska->ctx->pb); matroska_clear_queue(matroska); if ((ret = matroska_parse_cluster(matroska)) < 0) { - if ((ret == AVERROR_EOF) || matroska_resync(matroska, pos) < 0) + if (ret == AVERROR_EOF) { break; + } else if(matroska_resync(matroska, pos) < 0) { + index = -1; + break; + } } } } -- 2.15.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel