diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-03-07 21:07:22 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-03-07 21:07:22 +0000 |
commit | 57cb8d98310ec2db8d44376032b96435724c83f4 (patch) | |
tree | a90002d93ab11f6abe738dc5d07fcbfbca3c3757 /libavcodec | |
parent | ecefc5ddbd9ea2792a9a3982992d9524a2ef8651 (diff) | |
download | ffmpeg-57cb8d98310ec2db8d44376032b96435724c83f4.tar.gz |
AAC: Add a new line after the TNS error message.
Originally committed as revision 22287 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index e73aa75391..994c73352f 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -846,7 +846,7 @@ static int decode_tns(AACContext *ac, TemporalNoiseShaping *tns, 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; |