mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vp3: remove unneeded error, this is internal and doesn't happen
Originally committed as revision 22499 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
577838842d
commit
1a8560423e
@ -464,11 +464,6 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb)
|
||||
|
||||
/* 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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user