diff options
author | Stefan Gehrer | 2009-02-10 16:45:02 +0000 |
---|---|---|
committer | Stefan Gehrer | 2009-02-10 16:45:02 +0000 |
commit | e090c70f2f7e9c64696964517c2503e3ce7d274d (patch) | |
tree | 2fd775cdd27f0124388542bcfe88aff079d37e8b /libavcodec/cavsdec.c | |
parent | ae2d3e3b25a39328e878f67a63be006e4c8d5251 (diff) |
avoid duplicating dsputil's clear_block
Originally committed as revision 17135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index a2c8a1ad91..b4d3e978ad 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -144,6 +144,7 @@ static int decode_residual_block(AVSContext *h, GetBitContext *gb, ff_cavs_dequant_shift[qp], i)) return -1; h->s.dsp.cavs_idct8_add(dst,block,stride); + h->s.dsp.clear_block(block); return 0; } |