[FFmpeg-cvslog] lavc/cbs_h2645: Add missing newlines in log messages

Mark Thompson git at videolan.org
Sun Feb 9 22:37:19 EET 2020


ffmpeg | branch: master | Mark Thompson <sw at jkqxz.net> | Sun Sep 29 17:45:58 2019 +0100| [bf0ab6e9c460faf14eac4373fc65cae8ed1c8c71] | committer: Mark Thompson

lavc/cbs_h2645: Add missing newlines in log messages

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bf0ab6e9c460faf14eac4373fc65cae8ed1c8c71
---

 libavcodec/cbs_h2645.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/cbs_h2645.c b/libavcodec/cbs_h2645.c
index 5f1a20d427..c8347ba5fa 100644
--- a/libavcodec/cbs_h2645.c
+++ b/libavcodec/cbs_h2645.c
@@ -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;
         }
 



More information about the ffmpeg-cvslog mailing list