summaryrefslogtreecommitdiff
path: root/libavcodec/cbs.c
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2017-12-11 00:28:40 +0000
committerMark Thompson <sw@jkqxz.net>2018-02-20 22:04:12 +0000
commita3daecd6375279d9fdb863ac9db3545a33e97651 (patch)
tree9a6f7d9577ba13598b18385b52ad033abb8e9dd8 /libavcodec/cbs.c
parent67eb2b16daa77f6ba3e04a28ca18e53193723b7f (diff)
cbs: Demote the "decomposition unimplemented" warning
This is harmless and should not be a warning - unknown units are passed through to the write functions unchanged, and no other code will interact with them.
Diffstat (limited to 'libavcodec/cbs.c')
-rw-r--r--libavcodec/cbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbs.c b/libavcodec/cbs.c
index e5819afce3..a8d252f6c2 100644
--- a/libavcodec/cbs.c
+++ b/libavcodec/cbs.c
@@ -135,7 +135,7 @@ static int cbs_read_fragment_content(CodedBitstreamContext *ctx,
err = ctx->codec->read_unit(ctx, &frag->units[i]);
if (err == AVERROR(ENOSYS)) {
- av_log(ctx->log_ctx, AV_LOG_WARNING,
+ av_log(ctx->log_ctx, AV_LOG_VERBOSE,
"Decomposition unimplemented for unit %d "
"(type %"PRIu32").\n", i, frag->units[i].type);
} else if (err < 0) {