rtc-screen: Fix color artifact via color_sensitivity

Reduce the threshold (increase the shift) for setting
the color_sensitivity to 0 at superblock level on
scene/slide changes. On scene/slide changes better to
be much more conservative in setting this flag to 0/off.

This removes/reduces bad color artifact in
sc_web_browsing720p on slide change (wrong color
blocks appear in some areas).

Stats changed
For speed 10 screen:
avg/ovr/ssim, speedup(IC): -0.18/-0.43/-0.32, -0.50

bdrate gains on two clips where this change has effect:
sc_eb_browsing720p: -0.27/-0.36/-0.34
screenshare_buganizer: -1.5/-1.8/-1.3

Change-Id: I6a415599459365478f9ad9053b33e61f4f6afb66
diff --git a/av1/encoder/var_based_part.c b/av1/encoder/var_based_part.c
index 995b64e..52d8365 100644
--- a/av1/encoder/var_based_part.c
+++ b/av1/encoder/var_based_part.c
@@ -997,7 +997,7 @@
 
   if (cpi->oxcf.tune_cfg.content == AOM_CONTENT_SCREEN &&
       cpi->rc.high_source_sad)
-    shift = 5;
+    shift = 7;
 
   MB_MODE_INFO *mi = xd->mi[0];
   const AV1_COMMON *const cm = &cpi->common;