mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
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.
This commit is contained in:
parent
67eb2b16da
commit
a3daecd637
@ -135,7 +135,7 @@ static int cbs_read_fragment_content(CodedBitstreamContext *ctx,
|
|||||||
|
|
||||||
err = ctx->codec->read_unit(ctx, &frag->units[i]);
|
err = ctx->codec->read_unit(ctx, &frag->units[i]);
|
||||||
if (err == AVERROR(ENOSYS)) {
|
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 "
|
"Decomposition unimplemented for unit %d "
|
||||||
"(type %"PRIu32").\n", i, frag->units[i].type);
|
"(type %"PRIu32").\n", i, frag->units[i].type);
|
||||||
} else if (err < 0) {
|
} else if (err < 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user