Commit 4a2f2711 authored by bcoudurier's avatar bcoudurier

skip packet if no stream index is found, fix proxy_pal030926.mxf

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6721 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d4fb6130
......@@ -265,6 +265,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;
}
/* check for 8 channels AES3 element */
......
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