diff options
author | Tomas Härdin <tomas.hardin@codemill.se> | 2011-12-08 11:21:58 +0100 |
---|---|---|
committer | Tomas Härdin <tomas.hardin@codemill.se> | 2011-12-08 18:19:48 +0100 |
commit | 623128d7824d51965ffd37453a600ec51c0e653c (patch) | |
tree | 3892f892981f5cd502154784625972e87860f54c | |
parent | 336246238e8251840bb6f93e4110884c0b4ee8e6 (diff) | |
download | ffmpeg-623128d7824d51965ffd37453a600ec51c0e653c.tar.gz |
mxfdec: av_dlog():ify 'no corresponding source package found'
This isn't an error. It's also expected behavior for OPAtom files.
-rw-r--r-- | libavformat/mxfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 179d3a75db..2057f3b33b 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -1119,7 +1119,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) } } if (!source_package) { - av_log(mxf->fc, AV_LOG_ERROR, "material track %d: no corresponding source package found\n", material_track->track_id); + av_dlog(mxf->fc, "material track %d: no corresponding source package found\n", material_track->track_id); break; } for (k = 0; k < source_package->tracks_count; k++) { |