From 8c2a20701959c2062dbb314a9d5341a9744d7c02 Mon Sep 17 00:00:00 2001
From: Baptiste Coudurier <baptiste.coudurier@gmail.com>
Date: Sun, 16 Mar 2008 17:54:36 +0000
Subject: [PATCH] just skip klv packet, when no corresponding stream is found

Originally committed as revision 12464 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/mxf.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index 5a824acdf3b..4d4bcbb35d1 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -350,8 +350,7 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt)
             int index = mxf_get_stream_index(s, &klv);
             if (index < 0) {
                 av_log(s, AV_LOG_ERROR, "error getting stream index\n");
-                url_fskip(s->pb, klv.length);
-                return -1;
+                goto skip;
             }
             if (s->streams[index]->discard == AVDISCARD_ALL)
                 goto skip;
-- 
GitLab