Commit 89a35963 authored by reimar's avatar reimar

Fix error message, it's package ref that can not be found, not track in this case


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7447 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f1fe75f5
...@@ -808,7 +808,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) ...@@ -808,7 +808,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
for (k = 0; k < mxf->packages_count; k++) { for (k = 0; k < mxf->packages_count; k++) {
if (!(temp_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[k]))) { if (!(temp_package = mxf_resolve_strong_ref(mxf, &mxf->packages_refs[k]))) {
av_log(mxf->fc, AV_LOG_ERROR, "could not resolve source track strong ref\n"); av_log(mxf->fc, AV_LOG_ERROR, "could not resolve package strong ref\n");
return -1; return -1;
} }
if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) { if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {
......
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