summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2012-12-10 16:22:57 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2012-12-10 16:22:57 -0800
commit2cd48bdc92c28d5a4edd8500393b26befbb19e79 (patch)
tree154d040857e3bc54ef48d741100cbbc53bf653d1 /vp8/encoder/onyx_if.c
parentcc91d655e4573eda35307b8f888dd53d4c0f6471 (diff)
parent74efda4bd6af40c73a78e82b65beb53079d68b8e (diff)
downloadlibvpx-2cd48bdc92c28d5a4edd8500393b26befbb19e79.tar
libvpx-2cd48bdc92c28d5a4edd8500393b26befbb19e79.tar.gz
libvpx-2cd48bdc92c28d5a4edd8500393b26befbb19e79.tar.bz2
libvpx-2cd48bdc92c28d5a4edd8500393b26befbb19e79.zip
Merge "Moved zbin_mode_boost to macroblock struct"
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index eeba57490..0b7f280bb 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -3309,18 +3309,18 @@ static void encode_frame_to_data_rate
/* Clear zbin over-quant value and mode boost values. */
cpi->mb.zbin_over_quant = 0;
- cpi->zbin_mode_boost = 0;
+ cpi->mb.zbin_mode_boost = 0;
/* Enable or disable mode based tweaking of the zbin
* For 2 Pass Only used where GF/ARF prediction quality
* is above a threshold
*/
- cpi->zbin_mode_boost_enabled = 1;
+ cpi->mb.zbin_mode_boost_enabled = 1;
if (cpi->pass == 2)
{
if ( cpi->gfu_boost <= 400 )
{
- cpi->zbin_mode_boost_enabled = 0;
+ cpi->mb.zbin_mode_boost_enabled = 0;
}
}