summaryrefslogtreecommitdiff
path: root/vp8/decoder/generic
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2011-11-17 12:54:42 -0500
committerTero Rintaluoma <teror@google.com>2011-11-25 09:24:04 +0200
commit4a91541c946c1fc2655a942ec79033618f03c4ca (patch)
tree70093355ebd25dd2c79515f7950c8490f6937355 /vp8/decoder/generic
parent7b0feac4a4386eef3e1ea851e52e4f30935e255d (diff)
downloadlibvpx-4a91541c946c1fc2655a942ec79033618f03c4ca.tar
libvpx-4a91541c946c1fc2655a942ec79033618f03c4ca.tar.gz
libvpx-4a91541c946c1fc2655a942ec79033618f03c4ca.tar.bz2
libvpx-4a91541c946c1fc2655a942ec79033618f03c4ca.zip
Modified the inverse walsh to output directly
to the dqcoeff or qcoeff buffer. The encoder would populate the dc coeffs of the y blocks as a separate stage (recon_dcblock) and the decoder would use a special version of the idct. This change eliminates the extra copy and reduces the code footprint. [Tero] Added needed changes to armv6 and NEON assembly. Change-Id: I83202ffdbaf83f6e5dd69f4ba2519fcf0b13b3ba
Diffstat (limited to 'vp8/decoder/generic')
-rw-r--r--vp8/decoder/generic/dsystemdependent.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp8/decoder/generic/dsystemdependent.c b/vp8/decoder/generic/dsystemdependent.c
index 9c42bc62d..d9f9ba3c8 100644
--- a/vp8/decoder/generic/dsystemdependent.c
+++ b/vp8/decoder/generic/dsystemdependent.c
@@ -23,8 +23,6 @@ void vp8_dmachine_specific_config(VP8D_COMP *pbi)
pbi->mb.rtcd = &pbi->common.rtcd;
pbi->dequant.block = vp8_dequantize_b_c;
pbi->dequant.idct_add = vp8_dequant_idct_add_c;
- pbi->dequant.dc_idct_add = vp8_dequant_dc_idct_add_c;
- pbi->dequant.dc_idct_add_y_block = vp8_dequant_dc_idct_add_y_block_c;
pbi->dequant.idct_add_y_block = vp8_dequant_idct_add_y_block_c;
pbi->dequant.idct_add_uv_block = vp8_dequant_idct_add_uv_block_c;
#endif