diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-09-01 13:15:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 15:59:30 +0200 |
commit | 53241b5dc781471c9535a1d24ec4ece53f834f22 (patch) | |
tree | 649d02bdb2e118bfd639e8d37ff5fbb41b9282ad /libavcodec/dirac.c | |
parent | 08277a45c33f2e96dcef9878c6dafdeac9a01597 (diff) | |
download | ffmpeg-53241b5dc781471c9535a1d24ec4ece53f834f22.tar.gz |
lavc: add missing new line to some messages
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dirac.c')
-rw-r--r-- | libavcodec/dirac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dirac.c b/libavcodec/dirac.c index bab3980382..b26fff7b2d 100644 --- a/libavcodec/dirac.c +++ b/libavcodec/dirac.c @@ -232,7 +232,7 @@ static int parse_source_parameters(AVCodecContext *avctx, GetBitContext *gb, } if (luma_depth > 8) - av_log(avctx, AV_LOG_WARNING, "Bitdepth greater than 8"); + av_log(avctx, AV_LOG_WARNING, "Bitdepth greater than 8\n"); avctx->pix_fmt = dirac_pix_fmt[!luma_offset][source->chroma_format]; @@ -319,7 +319,7 @@ int avpriv_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb, * currently only used to signal field coding */ picture_coding_mode = svq3_get_ue_golomb(gb); if (picture_coding_mode != 0) { - av_log(avctx, AV_LOG_ERROR, "Unsupported picture coding mode %d", + av_log(avctx, AV_LOG_ERROR, "Unsupported picture coding mode %d\n", picture_coding_mode); return AVERROR_INVALIDDATA; } |