[FFmpeg-cvslog] r22287 - trunk/libavcodec/aac.c
alexc
subversion
Sun Mar 7 22:07:22 CET 2010
Author: alexc
Date: Sun Mar 7 22:07:22 2010
New Revision: 22287
Log:
AAC: Add a new line after the TNS error message.
Modified:
trunk/libavcodec/aac.c
Modified: trunk/libavcodec/aac.c
==============================================================================
--- trunk/libavcodec/aac.c Sun Mar 7 20:50:56 2010 (r22286)
+++ trunk/libavcodec/aac.c Sun Mar 7 22:07:22 2010 (r22287)
@@ -846,7 +846,7 @@ static int decode_tns(AACContext *ac, Te
tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) {
- av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.",
+ av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.\n",
tns->order[w][filt], tns_max_order);
tns->order[w][filt] = 0;
return -1;
More information about the ffmpeg-cvslog
mailing list