Commit e9604ef3 authored by diego's avatar diego

Reduce pointless verbosity after seeks in the MP3 decoder.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19759 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e3c16fd8
...@@ -2033,7 +2033,7 @@ static int mp_decode_layer3(MPADecodeContext *s) ...@@ -2033,7 +2033,7 @@ static int mp_decode_layer3(MPADecodeContext *s)
for(ch=0;ch<s->nb_channels;ch++) { for(ch=0;ch<s->nb_channels;ch++) {
g = &granules[ch][gr]; g = &granules[ch][gr];
if(get_bits_count(&s->gb)<0){ if(get_bits_count(&s->gb)<0){
av_log(s->avctx, AV_LOG_ERROR, "mdb:%d, lastbuf:%d skipping granule %d\n", av_log(s->avctx, AV_LOG_DEBUG, "mdb:%d, lastbuf:%d skipping granule %d\n",
main_data_begin, s->last_buf_size, gr); main_data_begin, s->last_buf_size, gr);
skip_bits_long(&s->gb, g->part2_3_length); skip_bits_long(&s->gb, g->part2_3_length);
memset(g->sb_hybrid, 0, sizeof(g->sb_hybrid)); memset(g->sb_hybrid, 0, sizeof(g->sb_hybrid));
......
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