aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-03-06 08:57:35 +0100
committerAnton Khirnov <anton@khirnov.net>2024-03-07 15:59:31 +0100
commit384a207ea90b88af2e2126fbc22e683c2b5c0e08 (patch)
tree66b6d9f428b7c52d7c23256f31f139acd26ec3c5
parent783d00b203b2a6c67ec289856ff080c7a36ddb6e (diff)
downloadffmpeg-384a207ea90b88af2e2126fbc22e683c2b5c0e08.tar.gz
lavf/matroskadec: add missing linebreaks in error messages
-rw-r--r--libavformat/matroskadec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index d91bce5635..a35ca6ca5b 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -2036,7 +2036,7 @@ static int matroska_parse_content_encodings(MatroskaTrackEncoding *encodings,
{
if (nb_encodings > 1) {
av_log(logctx, AV_LOG_ERROR,
- "Multiple combined encodings not supported");
+ "Multiple combined encodings not supported\n");
return 0;
}
if (!nb_encodings)
@@ -2055,7 +2055,7 @@ static int matroska_parse_content_encodings(MatroskaTrackEncoding *encodings,
encodings->encryption.key_id.size);
} else {
encodings->scope = 0;
- av_log(logctx, AV_LOG_ERROR, "Unsupported encoding type");
+ av_log(logctx, AV_LOG_ERROR, "Unsupported encoding type\n");
}
} else if (
#if CONFIG_ZLIB
@@ -2067,7 +2067,7 @@ static int matroska_parse_content_encodings(MatroskaTrackEncoding *encodings,
encodings->compression.algo != MATROSKA_TRACK_ENCODING_COMP_LZO &&
encodings->compression.algo != MATROSKA_TRACK_ENCODING_COMP_HEADERSTRIP) {
encodings->scope = 0;
- av_log(logctx, AV_LOG_ERROR, "Unsupported encoding type");
+ av_log(logctx, AV_LOG_ERROR, "Unsupported encoding type\n");
} else if (track->codec_priv.size && encodings[0].scope & 2) {
uint8_t *codec_priv = track->codec_priv.data;
int ret = matroska_decode_buffer(&track->codec_priv.data,