Speed up of ext-partition types

Search the new horz/vert a/b/4 partitions only if the best so far
is either oriented along the same direction or split/none, or if
the rd costs obtained from the previous partition searches indicate
there is potential in searching these partitions.

This brings about 25-30% speedup at less than 0.1% drop as seen on
lowres 30 frames.

Change-Id: I6c6c347e06c34ee0ca17479aeeb4075a66dc7e2c
diff --git a/av1/encoder/speed_features.h b/av1/encoder/speed_features.h
index e11635e..fc3c8e0 100644
--- a/av1/encoder/speed_features.h
+++ b/av1/encoder/speed_features.h
@@ -338,6 +338,11 @@
   // Has two levels for now: 1 and 2, where 2 is more aggressive than 1.
   int selective_ref_frame;
 
+#if CONFIG_EXT_PARTITION_TYPES
+  // Conditionally prune extended partition types search
+  int prune_ext_partition_types_search;
+#endif  // CONFIG_EXT_PARTITION_TYPES
+
   // Skip rectangular partition test when partition type none gives better
   // rd than partition type split.
   int less_rectangular_check;