]> granicus.if.org Git - libvpx/commitdiff
Fix vp10_get_inv_txfm_64x64_cfg
authorJingning Han <jingning@google.com>
Thu, 12 May 2016 23:06:48 +0000 (16:06 -0700)
committerJingning Han <jingning@google.com>
Thu, 12 May 2016 23:07:23 +0000 (16:07 -0700)
Add a missing break statement to prevent unintended behavior.

Change-Id: I54ecc95d4a35d4011e85af5635c94015cc944331

vp10/common/vp10_inv_txfm2d.c

index 3ae54c9fa8398687eab5e6666ce4f3893c9b8b2b..7408d5fa51bc428c980366d78e72d4d14264d411 100644 (file)
@@ -137,6 +137,7 @@ static const TXFM_2D_CFG* vp10_get_inv_txfm_64x64_cfg(int tx_type) {
   switch (tx_type) {
     case DCT_DCT:
       cfg = &inv_txfm_2d_cfg_dct_dct_64;
+      break;
     case ADST_DCT:
     case DCT_ADST:
     case ADST_ADST: