You will see before if you screw in one antenna (and vtx turned on on a distance) both receivers will have better rssi, after changing to this only the one antenna will have a better rssi as would make sense. The overall processing time is also lower, originally 50x2 analogRead's can be lowered to 10x4 analogRead's, and having a more reliable rssi reading will lower wrong switchovers on already degraded video when flying in harsh conditions.
An atmel can't process an analogread pinchange this fast, adding an extra discard analogRead gives better readings in less readings.
This article goes in depth in ADC reading and delay times for reliable reading: https://www.quora.com/Why-is-a-little-delay-needed-after-analogRead-in-Arduino
You should try this out it's a simple change in your version too:
You will see before if you screw in one antenna (and vtx turned on on a distance) both receivers will have better rssi, after changing to this only the one antenna will have a better rssi as would make sense. The overall processing time is also lower, originally 50x2 analogRead's can be lowered to 10x4 analogRead's, and having a more reliable rssi reading will lower wrong switchovers on already degraded video when flying in harsh conditions.