diff options
author | David Conrad <lessen42@gmail.com> | 2010-04-16 12:21:41 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-04-16 12:21:41 +0000 |
commit | d7097c2d888adf4a9e33a0cc007ef4ccf9a72be0 (patch) | |
tree | 1d78008cc2e3a70326e0674c56539c4e9c6e9d2d /libavcodec/vp3.c | |
parent | adc725b55824071eac463def514ecfa5cdb188a7 (diff) | |
download | ffmpeg-d7097c2d888adf4a9e33a0cc007ef4ccf9a72be0.tar.gz |
vp3: Remove internal debug statement
Originally committed as revision 22892 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 2dccbcdea4..c7c85389a7 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -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); |