mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-02 21:12:12 +00:00
lavc/cbs_h2645: Add missing newlines in log messages
This commit is contained in:
parent
cbf2a9bfac
commit
bf0ab6e9c4
@ -616,7 +616,7 @@ static int cbs_h2645_split_fragment(CodedBitstreamContext *ctx,
|
||||
version = bytestream2_get_byte(&gbc);
|
||||
if (version != 1) {
|
||||
av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid AVCC header: "
|
||||
"first byte %u.", version);
|
||||
"first byte %u.\n", version);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
@ -691,7 +691,7 @@ static int cbs_h2645_split_fragment(CodedBitstreamContext *ctx,
|
||||
version = bytestream2_get_byte(&gbc);
|
||||
if (version != 1) {
|
||||
av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid HVCC header: "
|
||||
"first byte %u.", version);
|
||||
"first byte %u.\n", version);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user