summaryrefslogtreecommitdiff
path: root/vp10/encoder/encodeframe.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-09-22 14:01:48 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-09-25 19:30:46 -0400
commitc74b33a413f43d76c0a3239f32d42a0980d07ff3 (patch)
tree0b7c372cddc71d45cd3dfbe6881d149758dad449 /vp10/encoder/encodeframe.c
parent760223264264a64ed458a895296a09229d7b9fff (diff)
downloadlibvpx-c74b33a413f43d76c0a3239f32d42a0980d07ff3.tar
libvpx-c74b33a413f43d76c0a3239f32d42a0980d07ff3.tar.gz
libvpx-c74b33a413f43d76c0a3239f32d42a0980d07ff3.tar.bz2
libvpx-c74b33a413f43d76c0a3239f32d42a0980d07ff3.zip
vp10: remove MACROBLOCK.fwd_txm4x4 function pointer.
This is preparatory work for allowing per-segment lossless coding. See issue 1035. Change-Id: Idd72e2a42d90fa7319c10122032d1a7c7a54dc05
Diffstat (limited to 'vp10/encoder/encodeframe.c')
-rw-r--r--vp10/encoder/encodeframe.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/vp10/encoder/encodeframe.c b/vp10/encoder/encodeframe.c
index c3b6265e3..8e5dfae91 100644
--- a/vp10/encoder/encodeframe.c
+++ b/vp10/encoder/encodeframe.c
@@ -2697,14 +2697,8 @@ static void encode_frame_internal(VP10_COMP *cpi) {
cm->uv_ac_delta_q == 0;
#if CONFIG_VP9_HIGHBITDEPTH
- if (cm->use_highbitdepth)
- x->fwd_txm4x4 = xd->lossless ? vp10_highbd_fwht4x4 : vpx_highbd_fdct4x4;
- else
- x->fwd_txm4x4 = xd->lossless ? vp10_fwht4x4 : vpx_fdct4x4;
x->highbd_itxm_add = xd->lossless ? vp10_highbd_iwht4x4_add :
vp10_highbd_idct4x4_add;
-#else
- x->fwd_txm4x4 = xd->lossless ? vp10_fwht4x4 : vpx_fdct4x4;
#endif // CONFIG_VP9_HIGHBITDEPTH
x->itxm_add = xd->lossless ? vp10_iwht4x4_add : vp10_idct4x4_add;