Temporarily disable top_right_sync_wait_in_mis

Temporarily disabled top_right_sync_wait_in_mis due to a TSAN
error.

Change-Id: I332138468fe960ba78f035ec83c89ba8b20578e0
diff --git a/av1/encoder/speed_features.c b/av1/encoder/speed_features.c
index 5e4b8a1..e1f280d 100644
--- a/av1/encoder/speed_features.c
+++ b/av1/encoder/speed_features.c
@@ -1702,10 +1702,9 @@
     // For multi-thread use case with row_mt enabled, enable top right
     // dependency wait of threads at mi level.
     if ((cpi->oxcf.row_mt == 1) && (cpi->mt_info.num_workers > 1)) {
-      sf->rt_sf.top_right_sync_wait_in_mis =
-          frame_is_intra_only(cm) ? 0
-                                  : (!cpi->oxcf.tool_cfg.enable_global_motion &&
-                                     cpi->sf.rt_sf.use_nonrd_pick_mode);
+      // TODO(Deepa, yunqing): Temporarily disabled this feature due to a TSAN
+      // error. Will re-enable it after the fix.
+      sf->rt_sf.top_right_sync_wait_in_mis = false;
     }
   }
   if (speed >= 10) {