From 717f1019a8405089a031bfb5862afb6548794979 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 13 Jan 2007 18:21:55 +0000 Subject: [PATCH] Fix error message, it's package ref that can not be found, not track in this case Originally committed as revision 7447 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mxf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mxf.c b/libavformat/mxf.c index b206799..39e45bc 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -808,7 +808,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) 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)) { -- 2.7.4