diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2014-08-12 16:55:22 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-08-17 16:11:02 +0200 |
commit | 304089aca7d238ae184e09993b5c737aa22e2c2c (patch) | |
tree | 5378e47ddcecee8e77b9f3e654a754fe271af0dd /libavformat/mxfdec.c | |
parent | 11db644a8e54f02e54d2eaad343a87fcb697c15e (diff) | |
download | ffmpeg-304089aca7d238ae184e09993b5c737aa22e2c2c.tar.gz |
mxf: Add UID print helpers
And use it to print non-parsed ULs.
Diffstat (limited to 'libavformat/mxfdec.c')
-rw-r--r-- | libavformat/mxfdec.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index ba76577e13..410c13b30d 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -2185,6 +2185,9 @@ static int mxf_read_header(AVFormatContext *s) return res; } break; + } else { + av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n", + UID_ARG(klv.key)); } } if (!metadata->read) |