From c287e271f2a8917d11de159715619cb1ca28d55d Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Thu, 20 Oct 2016 18:19:16 -0700 Subject: [PATCH] Fix typos In a previous commit: 5db9743fbbe500bb802b5e5f5eb4e495621e29f7, two changes that appeared to be typos are breaking build when experiments are enabled: ../../libvpx/configure --enable-experimental --enable-ref-mv --enable-ext-intra --enable-ext-refs --enable-ext-interp --enable-supertx --enable-var-tx --enable-entropy --enable-ext-inter --enable-ext-tx --enable-motion-var --enable-dual-filter --enable-ext-partition --enable-ext-partition-types --enable-loop-restoration --enable-rect-tx --enable-palette --enable-aom-highbitdepth --enable-filter-intra --enable-internal-stats && make clean && make -j16 This commit fixes the issue. Change-Id: I9ce5bbc96df326214202868cb0669bd334c86851 --- av1/encoder/rdopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/av1/encoder/rdopt.c b/av1/encoder/rdopt.c index c987a5c4a..ce8695a44 100644 --- a/av1/encoder/rdopt.c +++ b/av1/encoder/rdopt.c @@ -9440,8 +9440,8 @@ void av1_rd_pick_inter_mode_sb(const AV1_COMP *cpi, TileDataEnc *tile_data, filter_intra_mode_info_uv[uv_tx].filter_intra_mode[1]; } #endif // CONFIG_FILTER_INTRA - skippable = skippable && skip_uv[uv_tx]; - distortion2 = distortion_y + dist_uv[uv_tx]; + skippable = skippable && skip_uvs[uv_tx]; + distortion2 = distortion_y + dist_uvs[uv_tx]; rate2 = rate_y + rate_overhead + rate_uv_intra[uv_tx]; rate2 += ref_costs_single[INTRA_FRAME];