Commit 3cc5576e authored by Paul B Mahol's avatar Paul B Mahol

avcodec/proresdec2: add new line at end of debug message

parent b88ed73b
...@@ -167,9 +167,9 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -167,9 +167,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
} }
if (avctx->bits_per_raw_sample == 10) { 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 */ } 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); ff_blockdsp_init(&ctx->bdsp, avctx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment