comparison ac3dec.c @ 8134:10541875e559 libavcodec

add a line break in error message text
author jbr
date Thu, 13 Nov 2008 03:18:01 +0000
parents 043e1096c83d
children c82f8f5657ff
comparison
equal deleted inserted replaced
8133:043e1096c83d 8134:10541875e559
916 if (s->channel_in_cpl[ch]) 916 if (s->channel_in_cpl[ch])
917 s->end_freq[ch] = s->start_freq[CPL_CH]; 917 s->end_freq[ch] = s->start_freq[CPL_CH];
918 else { 918 else {
919 int bandwidth_code = get_bits(gbc, 6); 919 int bandwidth_code = get_bits(gbc, 6);
920 if (bandwidth_code > 60) { 920 if (bandwidth_code > 60) {
921 av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60", bandwidth_code); 921 av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code);
922 return -1; 922 return -1;
923 } 923 }
924 s->end_freq[ch] = bandwidth_code * 3 + 73; 924 s->end_freq[ch] = bandwidth_code * 3 + 73;
925 } 925 }
926 group_size = 3 << (s->exp_strategy[blk][ch] - 1); 926 group_size = 3 << (s->exp_strategy[blk][ch] - 1);