Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-12-03 17:40:26 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-12-03 17:40:26 +0300
commita8cb567e559a99c27bd936a81422147cb23e77a6 (patch)
treed6ce768c702948bd529fd56235fc7f6c30b6bcc6 /libavcodec/dnxhddec.c
parent6c15618b90e4872e119fb083d31b6fc7661b33bb (diff)
lavc: Remove CR/LF from avpriv_request_sample() calls.
Diffstat (limited to 'libavcodec/dnxhddec.c')
-rw-r--r--libavcodec/dnxhddec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c
index 4d1b006bb5..70ce264c96 100644
--- a/libavcodec/dnxhddec.c
+++ b/libavcodec/dnxhddec.c
@@ -234,7 +234,7 @@ static int dnxhd_decode_header(DNXHDContext *ctx, AVFrame *frame,
ctx->is_444 = (buf[0x2C] >> 6) & 1;
if (ctx->is_444) {
if (bitdepth == 8) {
- avpriv_request_sample(ctx->avctx, "4:4:4 8 bits\n");
+ avpriv_request_sample(ctx->avctx, "4:4:4 8 bits");
return AVERROR_INVALIDDATA;
} else if (bitdepth == 10) {
ctx->decode_dct_block = dnxhd_decode_dct_block_10_444;