From: Jingning Han Date: Tue, 23 Oct 2018 05:51:48 +0000 (-0700) Subject: Remove empty else branch in mode_estimation X-Git-Tag: v1.8.0~215^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77e109340d99b3a0ddda9cb5c5d605a236eb46b2;p=libvpx Remove empty else branch in mode_estimation Change-Id: Iefa184aae80b920b054e3e922a77244c2b0d4b61 --- diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c index 51b476ef6..b31f180bb 100644 --- a/vp9/encoder/vp9_encoder.c +++ b/vp9/encoder/vp9_encoder.c @@ -5891,10 +5891,7 @@ void mode_estimation(VP9_COMP *cpi, MACROBLOCK *x, MACROBLOCKD *xd, 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;