summaryrefslogtreecommitdiff
path: root/libavformat/mxfdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mxfdec.c')
-rw-r--r--libavformat/mxfdec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 02298b5879..99c8fede02 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -2765,13 +2765,13 @@ static int mxf_read_header(AVFormatContext *s)
if ((ret = mxf_parse_klv(mxf, klv, metadata->read, metadata->ctx_size, metadata->type)) < 0)
goto fail;
break;
- } else {
- av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
- UID_ARG(klv.key));
}
}
- if (!metadata->read)
+ if (!metadata->read) {
+ av_log(s, AV_LOG_VERBOSE, "Dark key " PRIxUID "\n",
+ UID_ARG(klv.key));
avio_skip(s->pb, klv.length);
+ }
}
/* FIXME avoid seek */
if (!essence_offset) {