[FFmpeg-cvslog] wavpack: add missing .\n to entropy error message

Paul B Mahol git at videolan.org
Sat Jun 8 19:44:41 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Jun  8 17:38:32 2013 +0000| [b94f045b18f14d6f5399fe6a1ff917a78c60e1fc] | committer: Paul B Mahol

wavpack: add missing .\n to entropy error message

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b94f045b18f14d6f5399fe6a1ff917a78c60e1fc
---

 libavcodec/wavpack.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 4832331..de5bc6c 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -916,7 +916,7 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
         case WP_ID_ENTROPY:
             if (size != 6 * (s->stereo_in + 1)) {
                 av_log(avctx, AV_LOG_ERROR,
-                       "Entropy vars size should be %i, got %i",
+                       "Entropy vars size should be %i, got %i.\n",
                        6 * (s->stereo_in + 1), size);
                 bytestream2_skip(&gb, ssize);
                 continue;



More information about the ffmpeg-cvslog mailing list