rtc: Reduce threshold[0] in var part for sp 9 high resoln

For speed 9 (where force_large_partition_blocks is on) and
resolutions above 480p: the current threshold[0] (to split 128x128)
can become equal to or larger than the threshold[1] (to split 64x64),
which should not happen.

This change makes sure threshold[0] stays smaller than threshold[1].

Speed differene on a few 720p clips is small (within ~1-2%), but
bdrate on 720p clips have good gains (from ~1-5%).
avg bdrate gain ~0.9 on rtc_set.

Change-Id: I1bb155b96478c520b71199a48694830d0171370b
diff --git a/av1/encoder/var_based_part.c b/av1/encoder/var_based_part.c
index aada04d..c6d0f05 100644
--- a/av1/encoder/var_based_part.c
+++ b/av1/encoder/var_based_part.c
@@ -424,7 +424,7 @@
         thresholds[2] <<= 5;
         thresholds[3] = INT32_MAX;
       } else if (cm->width * cm->height > 640 * 480 && segment_id == 0) {
-        thresholds[0] <<= 2;
+        thresholds[0] = (3 * thresholds[0]) >> 1;
         thresholds[3] = INT32_MAX;
         if (current_qindex >= QINDEX_LARGE_BLOCK_THR) {
           thresholds[1] <<= 1;