vp3: Remove internal debug statement

Originally committed as revision 22892 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
David Conrad 2010-04-16 12:21:41 +00:00
parent adc725b558
commit d7097c2d88
1 changed files with 1 additions and 2 deletions

View File

@ -1287,8 +1287,7 @@ static inline int vp3_dequant(Vp3DecodeContext *s, Vp3Fragment *frag,
block[perm[i]] = (token >> 2) * dequantizer[perm[i]];
s->dct_tokens[plane][i++]++;
break;
default:
av_log(s->avctx, AV_LOG_ERROR, "internal: invalid token type\n");
default: // shouldn't happen
return i;
}
} while (i < 64);