Browse Source

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.
tags/n4.0
Mark Thompson 8 years ago
parent
commit
a3daecd637
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cbs.c

+ 1
- 1
libavcodec/cbs.c View File

@@ -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) {


Loading…
Cancel
Save