Remove unused table definitions

Change-Id: Idc44fa29c70c9bb63c9b04cfba679fd05d34fdff
diff --git a/av1/common/common_data.h b/av1/common/common_data.h
index 7341c09..1e6b619 100644
--- a/av1/common/common_data.h
+++ b/av1/common/common_data.h
@@ -562,27 +562,6 @@
   32,   32, 128, 128,  512, 512,
 };
 
-static const uint8_t tx_size_1d_log2[TX_SIZES] = {
-#if CONFIG_CB4X4
-  1,
-#endif
-  2, 3, 4, 5,
-#if CONFIG_TX64X64
-  6,
-#endif  // CONFIG_TX64X64
-};
-
-// TODO(jingning): Temporary table during the construction.
-static const int tx_size_1d_in_unit_log2[TX_SIZES] = {
-#if CONFIG_CB4X4
-  -1,
-#endif
-  0,  1, 2, 3,
-#if CONFIG_TX64X64
-  4,
-#endif  // CONFIG_TX64X64
-};
-
 static const BLOCK_SIZE txsize_to_bsize[TX_SIZES_ALL] = {
 #if CONFIG_CB4X4
   BLOCK_4X4,  // TX_2X2
diff --git a/av1/common/enums.h b/av1/common/enums.h
index e753819..aefd002 100644
--- a/av1/common/enums.h
+++ b/av1/common/enums.h
@@ -99,7 +99,6 @@
   BLOCK_128X64,
   BLOCK_128X128,
 #endif  // CONFIG_EXT_PARTITION
-
   BLOCK_SIZES,
   BLOCK_INVALID = BLOCK_SIZES,
   BLOCK_LARGEST = (BLOCK_SIZES - 1)