summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encoder.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-05-21 11:09:44 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-05-21 11:09:44 -0700
commit35a83677a534f3e100eb118ea85eeedb495bc621 (patch)
tree581a3db1ea75ec043fb384bc2a1ea374c7b9490c /vp9/encoder/vp9_encoder.c
parent66ce10c13dee8d64f4249189df450e4b14cf9ca3 (diff)
downloadlibvpx-35a83677a534f3e100eb118ea85eeedb495bc621.tar
libvpx-35a83677a534f3e100eb118ea85eeedb495bc621.tar.gz
libvpx-35a83677a534f3e100eb118ea85eeedb495bc621.tar.bz2
libvpx-35a83677a534f3e100eb118ea85eeedb495bc621.zip
Moving itxm_add pointer from MACROBLOCKD to MACROBLOCK.
The final goal is eventually to get rid of both itxm_add and fwd_txm4x4. This patch does it in the decoder. Change-Id: Ibb3db57efbcbb1ac387c6742538a9fcf2c6f24a5
Diffstat (limited to 'vp9/encoder/vp9_encoder.c')
-rw-r--r--vp9/encoder/vp9_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c
index 1f68f03c4..a918dde19 100644
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -602,9 +602,9 @@ void vp9_change_config(struct VP9_COMP *cpi, const VP9EncoderConfig *oxcf) {
// is set.
cpi->oxcf.worst_allowed_q = 0;
cpi->oxcf.best_allowed_q = 0;
- cpi->mb.e_mbd.itxm_add = vp9_iwht4x4_add;
+ cpi->mb.itxm_add = vp9_iwht4x4_add;
} else {
- cpi->mb.e_mbd.itxm_add = vp9_idct4x4_add;
+ cpi->mb.itxm_add = vp9_idct4x4_add;
}
rc->baseline_gf_interval = DEFAULT_GF_INTERVAL;
cpi->ref_frame_flags = VP9_ALT_FLAG | VP9_GOLD_FLAG | VP9_LAST_FLAG;