SubGopSwitchingTestLarge: set kf_min_dist.

Earlier, there was no lower limit for minimum keyframe distance. So, it
was possible that encoder may choose to insert multiple scene-cut
keyframes. And consequently, it was possible that subgop config supplied
by the user never gets used: as GF interval in subgop config (e.g. 16)
may not match the GF interval selected by the encoder in any of the subgops.

Now, we limit minimum keyframe distance to 65 to avoid this issue.
diff --git a/test/subgop_test.cc b/test/subgop_test.cc
index 8c5fba0..3691d07 100644
--- a/test/subgop_test.cc
+++ b/test/subgop_test.cc
@@ -857,6 +857,9 @@
     SetMode(::libaom_test::kOnePassGood);
     cfg_.g_threads = 1;
     cfg_.rc_end_usage = rc_end_usage_;
+    // Keep sufficient distance between keyframes to let subgop configs be used.
+    cfg_.kf_min_dist = 65;
+    cfg_.kf_max_dist = 9999;
     cfg_.g_lag_in_frames = test_params_.lag_in_frames;
   }