rtc: Increase thresh to select sb-size=64 for MT

Use slightly higher threshold so the 3 remaining
high resolution clips in rtc_screen: (buganizer.1900_1306,
colorslides.1820_1320, crd_colwinscroll.1920_1128)
will also select sb-size=4 (for 4 threads with 4 tiles).

This gives ~7-10% speedup in encoder-fps for 4 threads
(with 2x2 or 4x1 config) for these clips.

Change-Id: I32a38fe105852b46142e176c9f9622f24baaf380
diff --git a/av1/encoder/encoder_utils.c b/av1/encoder/encoder_utils.c
index abbd95f..ca86de8 100644
--- a/av1/encoder/encoder_utils.c
+++ b/av1/encoder/encoder_utils.c
@@ -811,7 +811,7 @@
       // per tile is low use 64X64 superblock.
       if (oxcf->row_mt == 1 && oxcf->max_threads >= 4 &&
           oxcf->max_threads >= num_tiles && AOMMIN(width, height) > 720 &&
-          (width * height) / (128 * 128 * num_tiles) <= 32)
+          (width * height) / (128 * 128 * num_tiles) <= 38)
         return BLOCK_64X64;
       else
         return AOMMIN(width, height) >= 720 ? BLOCK_128X128 : BLOCK_64X64;