ref: 0257168c77791b804568ceaba429ac6f40bc55c7
parent: 08655e8cd1ac8f9f69940ac11a570fe10fe1a490
parent: 77e109340d99b3a0ddda9cb5c5d605a236eb46b2
author: Jingning Han <[email protected]>
date: Tue Oct 23 15:16:41 EDT 2018
Merge "Remove empty else branch in mode_estimation"
--- 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;