summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_blockd.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-10-08 11:27:56 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-10-08 11:27:56 -0700
commitc983c966cbed4919d008c7fc168292af75593bcd (patch)
tree2004a6f3dde6934450e89b0e0686c0acf29e4f33 /vp9/common/vp9_blockd.h
parent8d3ef287a254104b91341f9a34a194d349881494 (diff)
downloadlibvpx-c983c966cbed4919d008c7fc168292af75593bcd.tar
libvpx-c983c966cbed4919d008c7fc168292af75593bcd.tar.gz
libvpx-c983c966cbed4919d008c7fc168292af75593bcd.tar.bz2
libvpx-c983c966cbed4919d008c7fc168292af75593bcd.zip
Removing inv_txm4x4_1_add and inv_txm4x4_add function pointers.
We already have itxm_add member in MACROBLOCKD structure. Both inv_txm4x4_1_add and inv_txm4x4_add are just its special cases for different eob values. But eob logic is already implemented in vp9_iwht4x4_add and vp9_idct4x4_add (that's why also removing inverse_transform_b_4x4_add). Change-Id: I80bec9b6f7d40c5e5033c613faca5c819c3e6326
Diffstat (limited to 'vp9/common/vp9_blockd.h')
-rw-r--r--vp9/common/vp9_blockd.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp9/common/vp9_blockd.h b/vp9/common/vp9_blockd.h
index f116c0647..d0df96669 100644
--- a/vp9/common/vp9_blockd.h
+++ b/vp9/common/vp9_blockd.h
@@ -221,8 +221,6 @@ typedef struct macroblockd {
int lossless;
/* Inverse transform function pointers. */
- void (*inv_txm4x4_1_add)(int16_t *input, uint8_t *dest, int stride);
- void (*inv_txm4x4_add)(int16_t *input, uint8_t *dest, int stride);
void (*itxm_add)(int16_t *input, uint8_t *dest, int stride, int eob);
struct subpix_fn_table subpix;