diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-23 00:07:16 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-23 00:07:16 +0000 |
commit | c25c7767085297e4f6bf4171391b615b5bddc281 (patch) | |
tree | 4358d3117808ea7e00152aaf2a25d8bf4dcfe82d /libavcodec/vp8.c | |
parent | b74f70d64699907717ec1620f683d31840a9e4e3 (diff) | |
download | ffmpeg-c25c7767085297e4f6bf4171391b615b5bddc281.tar.gz |
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.c | 2 |
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); |