comparison nellymoserdec.c @ 7357:5a743d9ad9bc libavcodec

Reduce the loglevel on a log message in the Nellymoser decoder. Related to Roundup 447.
author banan
date Wed, 23 Jul 2008 12:21:56 +0000
parents ab345b7d32ed
children 85ab7655ad4d
comparison
equal deleted inserted replaced
7356:e03fd655afe3 7357:5a743d9ad9bc
172 case 256: // 22050Hz 172 case 256: // 22050Hz
173 blocks = 4; break; 173 blocks = 4; break;
174 case 512: // 44100Hz 174 case 512: // 44100Hz
175 blocks = 8; break; 175 blocks = 8; break;
176 default: 176 default:
177 av_log(avctx, AV_LOG_ERROR, "Tag size %d unknown, report sample!\n", buf_size); 177 av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size);
178 return buf_size; 178 return buf_size;
179 } 179 }
180 180
181 for (i=0 ; i<blocks ; i++) { 181 for (i=0 ; i<blocks ; i++) {
182 nelly_decode_block(s, &buf[i*NELLY_BLOCK_LEN], s->float_buf); 182 nelly_decode_block(s, &buf[i*NELLY_BLOCK_LEN], s->float_buf);