Mercurial > libavcodec.hg
changeset 11474:66b2c909d530 libavcodec
vp3: remove unneeded error, this is internal and doesn't happen
author | conrad |
---|---|
date | Sat, 13 Mar 2010 05:59:18 +0000 |
parents | 8b6722b58f15 |
children | b7744b7bee4b |
files | vp3.c |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/vp3.c Sat Mar 13 05:56:15 2010 +0000 +++ b/vp3.c Sat Mar 13 05:59:18 2010 +0000 @@ -464,11 +464,6 @@ /* if the fragment is in bounds, check its coding status */ current_fragment = s->superblock_fragments[i * 16 + j]; - if (current_fragment >= s->fragment_count) { - av_log(s->avctx, AV_LOG_ERROR, " vp3:unpack_superblocks(): bad fragment number (%d >= %d)\n", - current_fragment, s->fragment_count); - return 1; - } if (current_fragment != -1) { int coded = s->superblock_coding[i];