[FFmpeg-cvslog] aacps: Add missing newline in error message.
Alex Converse
git at videolan.org
Tue Jan 10 03:52:27 CET 2012
ffmpeg | branch: master | Alex Converse <alex.converse at gmail.com> | Fri Jan 6 14:49:11 2012 -0800| [9de3cbc182577ad4813804ece967ccf401d1b559] | committer: Alex Converse
aacps: Add missing newline in error message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9de3cbc182577ad4813804ece967ccf401d1b559
---
libavcodec/aacps.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/aacps.c b/libavcodec/aacps.c
index d7d6ef8..3da912c 100644
--- a/libavcodec/aacps.c
+++ b/libavcodec/aacps.c
@@ -223,7 +223,7 @@ int ff_ps_read_data(AVCodecContext *avctx, GetBitContext *gb_host, PSContext *ps
cnt -= 2 + ps_read_extension_data(gb, ps, ps_extension_id);
}
if (cnt < 0) {
- av_log(avctx, AV_LOG_ERROR, "ps extension overflow %d", cnt);
+ av_log(avctx, AV_LOG_ERROR, "ps extension overflow %d\n", cnt);
goto err;
}
skip_bits(gb, cnt);
More information about the ffmpeg-cvslog
mailing list