[FFmpeg-cvslog] avcodec/proresdec2: add new line at end of debug message
Paul B Mahol
git at videolan.org
Fri Dec 7 21:07:23 EET 2018
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Dec 7 20:05:37 2018 +0100| [3cc5576ee1003aa14d6fb3135c2b11d9ae8c5aa2] | committer: Paul B Mahol
avcodec/proresdec2: add new line at end of debug message
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3cc5576ee1003aa14d6fb3135c2b11d9ae8c5aa2
---
libavcodec/proresdec2.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c
index 8581d797fb..6b246319ef 100644
--- a/libavcodec/proresdec2.c
+++ b/libavcodec/proresdec2.c
@@ -167,9 +167,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
}
if (avctx->bits_per_raw_sample == 10) {
- av_log(avctx, AV_LOG_DEBUG, "Auto bitdepth precision. Use 10b decoding based on codec tag");
+ av_log(avctx, AV_LOG_DEBUG, "Auto bitdepth precision. Use 10b decoding based on codec tag.\n");
} else { /* 12b */
- av_log(avctx, AV_LOG_DEBUG, "Auto bitdepth precision. Use 12b decoding based on codec tag");
+ av_log(avctx, AV_LOG_DEBUG, "Auto bitdepth precision. Use 12b decoding based on codec tag.\n");
}
ff_blockdsp_init(&ctx->bdsp, avctx);
More information about the ffmpeg-cvslog
mailing list