Mercurial > libavcodec.hg
changeset 11388:404629a45da1 libavcodec
AAC: Add a new line after the TNS error message.
author | alexc |
---|---|
date | Sun, 07 Mar 2010 21:07:22 +0000 |
parents | c7ed26e2011f |
children | 7b9896e85410 |
files | aac.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/aac.c Sun Mar 07 17:55:23 2010 +0000 +++ b/aac.c Sun Mar 07 21:07:22 2010 +0000 @@ -846,7 +846,7 @@ 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;