Mercurial > libavformat.hg
changeset 1631:c47ab7c4a49a libavformat
Fix error message, it's package ref that can not be found, not track in this case
author | reimar |
---|---|
date | Sat, 13 Jan 2007 18:21:55 +0000 |
parents | e7c247a67e20 |
children | 6a6035a48dde |
files | mxf.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mxf.c Sat Jan 13 04:19:45 2007 +0000 +++ b/mxf.c Sat Jan 13 18:21:55 2007 +0000 @@ -808,7 +808,7 @@ for (k = 0; k < mxf->packages_count; 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; } if (!memcmp(temp_package->package_uid, component->source_package_uid, 16)) {