Commit b878aeaf authored by alexc's avatar alexc

AAC: Add a new line after the TNS error message.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22287 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 09535a0c
...@@ -846,7 +846,7 @@ static int decode_tns(AACContext *ac, TemporalNoiseShaping *tns, ...@@ -846,7 +846,7 @@ static int decode_tns(AACContext *ac, TemporalNoiseShaping *tns,
tns->length[w][filt] = get_bits(gb, 6 - 2 * is8); tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) { 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], tns_max_order);
tns->order[w][filt] = 0; tns->order[w][filt] = 0;
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment