summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2013-02-11 13:11:16 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-02-11 13:11:16 +0100
commit182e342fdbc77b244c7af02c19a3cb126981419a (patch)
tree6ac0e60d9a45448f1259ffe3bca221804f75ac60 /libavformat
parentc3a62d3507b231f4ac8cb17eb537024b8c497bc9 (diff)
Print mxf Universal Label if the user requested verbose logging.
Fixes ticket #2198
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mxfdec.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 648a579bef..21f9bba2b5 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -1506,6 +1506,12 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
/* TODO: drop PictureEssenceCoding and SoundEssenceCompression, only check EssenceContainer */
codec_ul = mxf_get_codec_ul(ff_mxf_codec_uls, &descriptor->essence_codec_ul);
st->codec->codec_id = (enum AVCodecID)codec_ul->id;
+ av_log(mxf->fc, AV_LOG_VERBOSE, "%s: Universal Label: ",
+ avcodec_get_name(st->codec->codec_id));
+ for (k = 0; k < 16; k++)
+ av_log(mxf->fc, AV_LOG_VERBOSE, "%.2x",
+ descriptor->essence_codec_ul[k]);
+ av_log(mxf->fc, AV_LOG_VERBOSE, "\n");
if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
source_track->intra_only = mxf_is_intra_only(descriptor);
container_ul = mxf_get_codec_ul(mxf_picture_essence_container_uls, essence_container_ul);