Fix compiler error when lv_map adapt_scan both on

Change-Id: Ibd0bda593717aab2894c36dd59925a0bcf654113
diff --git a/av1/decoder/decodetxb.c b/av1/decoder/decodetxb.c
index bf4f01b..6e38427 100644
--- a/av1/decoder/decodetxb.c
+++ b/av1/decoder/decodetxb.c
@@ -242,7 +242,7 @@
                           tx_size, max_scan_line, eob);
 #if CONFIG_ADAPT_SCAN
   PLANE_TYPE plane_type = get_plane_type(plane);
-  TX_TYPE tx_type = get_tx_type(plane_type, xd, block, tx_size);
+  TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, row, col, block, tx_size);
   if (xd->counts && *eob > 0)
     av1_update_scan_count_facade(cm, xd->counts, tx_size, tx_type, pd->dqcoeff,
                                  *eob);