]> granicus.if.org Git - libvpx/commitdiff
Map coding block size to transform block size
authorJingning Han <jingning@google.com>
Sun, 22 Jul 2018 14:32:58 +0000 (07:32 -0700)
committerJingning Han <jingning@google.com>
Sun, 22 Jul 2018 14:33:42 +0000 (07:33 -0700)
Change-Id: I89e18262a2736c0e86f7c30513179806a926827e

vp9/encoder/vp9_encoder.c

index 05d344df3e30142a6a5fa450d3fc0ad6f66f4615..37c63de2cce213c30a562b9ebabc34ceb242bce0 100644 (file)
@@ -5780,7 +5780,7 @@ void mc_flow_dispenser(VP9_COMP *cpi, GF_PICTURE *gf_picture, int frame_idx) {
   MODE_INFO mi_above, mi_left;
 
   const BLOCK_SIZE bsize = BLOCK_32X32;
-  const TX_SIZE tx_size = TX_32X32;
+  const TX_SIZE tx_size = max_txsize_lookup[bsize];
   const int bw = 4 << b_width_log2_lookup[bsize];
   const int bh = 4 << b_height_log2_lookup[bsize];
   const int mi_height = num_8x8_blocks_high_lookup[bsize];