From 4e406f702cbcd58f32a5d2b456b45bc240e9457a Mon Sep 17 00:00:00 2001 From: Debargha Mukherjee Date: Fri, 22 Jan 2016 03:29:39 -0800 Subject: [PATCH] A fix for a missing tx_type Change-Id: I165cd06256175edb7739020379ba3098251f4a7c --- vp10/encoder/rdopt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vp10/encoder/rdopt.c b/vp10/encoder/rdopt.c index b55f53ac8..defe99947 100644 --- a/vp10/encoder/rdopt.c +++ b/vp10/encoder/rdopt.c @@ -961,6 +961,7 @@ static void choose_smallest_tx_size(VP10_COMP *cpi, MACROBLOCK *x, MB_MODE_INFO *const mbmi = &xd->mi[0]->mbmi; mbmi->tx_size = TX_4X4; + mbmi->tx_type = DCT_DCT; txfm_rd_in_plane(x, #if CONFIG_VAR_TX -- 2.40.0