shithub: libvpx

Download patch

ref: 77e109340d99b3a0ddda9cb5c5d605a236eb46b2
parent: 79ef532489271c7ef744a16ba71e23ac6b6810af
author: Jingning Han <jingning@google.com>
date: Mon Oct 22 18:51:48 EDT 2018

Remove empty else branch in mode_estimation

Change-Id: Iefa184aae80b920b054e3e922a77244c2b0d4b61

--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -5891,10 +5891,7 @@
 
   for (rf_idx = 0; rf_idx < 3; ++rf_idx) {
     int_mv mv;
-    if (ref_frame[rf_idx] == NULL) {
-      continue;
-    } else {
-    }
+    if (ref_frame[rf_idx] == NULL) continue;
 
 #if CONFIG_NON_GREEDY_MV
     (void)td;