summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_pickmode.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-04-09 15:00:14 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-04-11 10:58:37 -0700
commit1ff4aa33de9c66882a5fdb422bd1c7f77597c7c7 (patch)
treecb3a45a454d7181cc881660e03239e01be295803 /vp9/encoder/vp9_pickmode.c
parentdc89e9b0b6a668ca4082e20463eb767f655b6909 (diff)
downloadlibvpx-1ff4aa33de9c66882a5fdb422bd1c7f77597c7c7.tar
libvpx-1ff4aa33de9c66882a5fdb422bd1c7f77597c7c7.tar.gz
libvpx-1ff4aa33de9c66882a5fdb422bd1c7f77597c7c7.tar.bz2
libvpx-1ff4aa33de9c66882a5fdb422bd1c7f77597c7c7.zip
Adding RD_OPT struct.
Change-Id: I2d1b5c1481aefe226082e1f096ca9edd340d4d31
Diffstat (limited to 'vp9/encoder/vp9_pickmode.c')
-rw-r--r--vp9/encoder/vp9_pickmode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_pickmode.c b/vp9/encoder/vp9_pickmode.c
index f3fe99cdb..3d398edc9 100644
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -233,8 +233,8 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
const int64_t intra_mode_cost = 50;
unsigned char segment_id = mbmi->segment_id;
- const int *const rd_threshes = cpi->rd_threshes[segment_id][bsize];
- const int *const rd_thresh_freq_fact = cpi->rd_thresh_freq_fact[bsize];
+ const int *const rd_threshes = cpi->rd.threshes[segment_id][bsize];
+ const int *const rd_thresh_freq_fact = cpi->rd.thresh_freq_fact[bsize];
// Mode index conversion form THR_MODES to MB_PREDICTION_MODE for a ref frame.
int mode_idx[MB_MODE_COUNT] = {0};
INTERP_FILTER filter_ref = SWITCHABLE;