summaryrefslogtreecommitdiff
path: root/libavformat/mxf.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-01-13 18:21:55 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2007-01-13 18:21:55 +0000
commit717f1019a8405089a031bfb5862afb6548794979 (patch)
tree9e90632f38719cf3dbe243471ca0cfa7910fe074 /libavformat/mxf.c
parent411983c1f23012e33f9264a4031cabff05b94a81 (diff)
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
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r--libavformat/mxf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index b206799438..39e45bc2b3 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)) {