summaryrefslogtreecommitdiff
path: root/libavcodec/proresdec2.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-12-07 20:05:37 +0100
committerPaul B Mahol <onemda@gmail.com>2018-12-07 20:05:37 +0100
commit3cc5576ee1003aa14d6fb3135c2b11d9ae8c5aa2 (patch)
tree5c7317de072e4a4ced95cefd1d24d6f4f55b832c /libavcodec/proresdec2.c
parentb88ed73be1852b29550012a13d5d9a55ba118314 (diff)
avcodec/proresdec2: add new line at end of debug message
Diffstat (limited to 'libavcodec/proresdec2.c')
-rw-r--r--libavcodec/proresdec2.c4
1 files 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);