[Ffmpeg-cvslog] r7447 - trunk/libavformat/mxf.c

reimar subversion
Sat Jan 13 19:21:55 CET 2007


Author: reimar
Date: Sat Jan 13 19:21:55 2007
New Revision: 7447

Modified:
   trunk/libavformat/mxf.c

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


Modified: trunk/libavformat/mxf.c
==============================================================================
--- trunk/libavformat/mxf.c	(original)
+++ trunk/libavformat/mxf.c	Sat Jan 13 19:21:55 2007
@@ -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)) {




More information about the ffmpeg-cvslog mailing list