summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_idct_blk.c
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2013-05-21 17:59:54 -0400
committerScott LaVarnway <slavarnway@google.com>2013-05-21 17:59:54 -0400
commita14315260040c02962fbeeee7819a79e5d32585a (patch)
tree8400b2323516f41e712d3d45c71dff9397d413f5 /vp9/decoder/vp9_idct_blk.c
parent0c3f3bf1d592e72f076ffd3e551909aca4a8b9fe (diff)
downloadlibvpx-a14315260040c02962fbeeee7819a79e5d32585a.tar
libvpx-a14315260040c02962fbeeee7819a79e5d32585a.tar.gz
libvpx-a14315260040c02962fbeeee7819a79e5d32585a.tar.bz2
libvpx-a14315260040c02962fbeeee7819a79e5d32585a.zip
Removed unused idct functions
No longer used. Change-Id: Id28c9247cebba183c6fa786dff96824ae100132c
Diffstat (limited to 'vp9/decoder/vp9_idct_blk.c')
-rw-r--r--vp9/decoder/vp9_idct_blk.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/vp9/decoder/vp9_idct_blk.c b/vp9/decoder/vp9_idct_blk.c
index 7726598bc..f26f87c64 100644
--- a/vp9/decoder/vp9_idct_blk.c
+++ b/vp9/decoder/vp9_idct_blk.c
@@ -143,12 +143,6 @@ void vp9_idct_add_c(int16_t *input, uint8_t *dest, int stride, int eob) {
}
}
-void vp9_dc_idct_add_c(int16_t *input, uint8_t *dest, int stride, int dc) {
- input[0] = dc;
- vp9_short_idct4x4_add(input, dest, stride);
- vpx_memset(input, 0, 32);
-}
-
void vp9_idct_add_lossless_c(int16_t *input, uint8_t *dest, int stride,
int eob) {
if (eob > 1) {
@@ -160,13 +154,6 @@ void vp9_idct_add_lossless_c(int16_t *input, uint8_t *dest, int stride,
}
}
-void vp9_dc_idct_add_lossless_c(int16_t *input, uint8_t *dest,
- int stride, int dc) {
- input[0] = dc;
- vp9_short_iwalsh4x4_add(input, dest, stride);
- vpx_memset(input, 0, 32);
-}
-
void vp9_idct_add_8x8_c(int16_t *input, uint8_t *dest, int stride, int eob) {
// If dc is 1, then input[0] is the reconstructed value, do not need
// dequantization. Also, when dc is 1, dc is counted in eobs, namely eobs >=1.