comparison aac.c @ 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 4b3da727d832
children d23864bc3887
comparison
equal deleted inserted replaced
11387:c7ed26e2011f 11388:404629a45da1
844 for (filt = 0; filt < tns->n_filt[w]; filt++) { 844 for (filt = 0; filt < tns->n_filt[w]; filt++) {
845 int tmp2_idx; 845 int tmp2_idx;
846 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8); 846 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
847 847
848 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) { 848 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) {
849 av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.", 849 av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.\n",
850 tns->order[w][filt], tns_max_order); 850 tns->order[w][filt], tns_max_order);
851 tns->order[w][filt] = 0; 851 tns->order[w][filt] = 0;
852 return -1; 852 return -1;
853 } 853 }
854 if (tns->order[w][filt]) { 854 if (tns->order[w][filt]) {