[FFmpeg-cvslog] r15810 - trunk/libavcodec/ac3dec.c

jbr subversion
Thu Nov 13 04:18:02 CET 2008


Author: jbr
Date: Thu Nov 13 04:18:01 2008
New Revision: 15810

Log:
add a line break in error message text


Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	(original)
+++ trunk/libavcodec/ac3dec.c	Thu Nov 13 04:18:01 2008
@@ -918,7 +918,7 @@ static int decode_audio_block(AC3DecodeC
             else {
                 int bandwidth_code = get_bits(gbc, 6);
                 if (bandwidth_code > 60) {
-                    av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60", bandwidth_code);
+                    av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code);
                     return -1;
                 }
                 s->end_freq[ch] = bandwidth_code * 3 + 73;




More information about the ffmpeg-cvslog mailing list