mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit 'a3daecd637'
* commit 'a3daecd637':
cbs: Demote the "decomposition unimplemented" warning
Merged-by: Mark Thompson <sw@jkqxz.net>
This commit is contained in:
commit
1325ac4c93
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue