summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-07-23 00:07:16 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-07-23 00:07:16 +0000
commitc25c7767085297e4f6bf4171391b615b5bddc281 (patch)
tree4358d3117808ea7e00152aaf2a25d8bf4dcfe82d /libavcodec/vp8.c
parentb74f70d64699907717ec1620f683d31840a9e4e3 (diff)
VP8: clear DCT blocks in iDCT instead of using clear_blocks.
~0.3% faster overall. Originally committed as revision 24448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 30a4c7d80a..e4a44b0dce 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -835,8 +835,6 @@ static void decode_mb_coeffs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb
int nnz_pred, nnz, nnz_total = 0;
int segment = s->segment;
- s->dsp.clear_blocks((DCTELEM *)s->block);
-
if (mb->mode != MODE_I4x4 && mb->mode != VP8_MVMODE_SPLIT) {
AV_ZERO128(dc);
AV_ZERO128(dc+8);