diff options
author | Martin Storsjö <martin@martin.st> | 2011-04-13 00:08:14 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-04-13 11:30:38 +0300 |
commit | a8ec07c933450eea929f632ee867383ebd55532a (patch) | |
tree | 5f8aedff1c84f8246b02670cef859c875b258b72 /libavcodec/libopencore-amr.c | |
parent | 587331414bfee1fc73eb9bcd1e8aaae3a56ec5ee (diff) | |
download | ffmpeg-a8ec07c933450eea929f632ee867383ebd55532a.tar.gz |
libopencore-amr: Don't print carriage returns in log messages
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/libopencore-amr.c')
-rw-r--r-- | libavcodec/libopencore-amr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c index f0bfad2cdf..fa72a221cf 100644 --- a/libavcodec/libopencore-amr.c +++ b/libavcodec/libopencore-amr.c @@ -84,7 +84,7 @@ static av_cold int amr_nb_decode_init(AVCodecContext *avctx) s->frameCount = 0; s->decState = Decoder_Interface_init(); if (!s->decState) { - av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\r\n"); + av_log(avctx, AV_LOG_ERROR, "Decoder_Interface_init error\n"); return -1; } |