comparison mpegaudiodec.c @ 3644:9eb3d84b6eef libavcodec

overread AV_LOG_ERROR -> AV_LOG_DEBUG
author michael
date Sun, 27 Aug 2006 21:45:26 +0000
parents ae1dfbbb25bb
children 4a93d7102793
comparison
equal deleted inserted replaced
3643:ae1dfbbb25bb 3644:9eb3d84b6eef
1769 if (pos > end_pos && last_pos){ //FIXME last_pos is messed if we switch buffers 1769 if (pos > end_pos && last_pos){ //FIXME last_pos is messed if we switch buffers
1770 /* some encoders generate an incorrect size for this 1770 /* some encoders generate an incorrect size for this
1771 part. We must go back into the data */ 1771 part. We must go back into the data */
1772 s_index -= 4; 1772 s_index -= 4;
1773 skip_bits_long(&s->gb, last_pos - pos); 1773 skip_bits_long(&s->gb, last_pos - pos);
1774 av_log(NULL, AV_LOG_ERROR, "overread, skip %d\n", last_pos&7); 1774 av_log(NULL, AV_LOG_DEBUG, "overread, skip %d\n", last_pos - pos);
1775 } 1775 }
1776 if(pos >= end_pos) 1776 if(pos >= end_pos)
1777 break; 1777 break;
1778 } 1778 }
1779 last_pos= pos; 1779 last_pos= pos;