Commit 78087a03 authored by reimar's avatar reimar

MXF: simply ignore tracks that are invalid due to not having a valid Sequence

part instead of failing completely.
This partly fixes issue 1470 (broken files created by BBC ingex recorder).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20221 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cf875271
......@@ -690,7 +690,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
if (!(material_track->sequence = mxf_resolve_strong_ref(mxf, &material_track->sequence_ref, Sequence))) {
av_log(mxf->fc, AV_LOG_ERROR, "could not resolve material track sequence strong ref\n");
return -1;
continue;
}
/* TODO: handle multiple source clips */
......
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