From: jackychen Date: Fri, 20 May 2016 21:34:41 +0000 (-0700) Subject: vp9: Remove a redundent condition in sub-pixel filter choosing. X-Git-Tag: v1.6.0~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f397b8a5bbd08b37f2ee8820cc25d218a21ad5d;p=platform%2Fupstream%2Flibvpx.git vp9: Remove a redundent condition in sub-pixel filter choosing. Change-Id: I5cbb0f452ec9622437482b3a9496ead1253acfe0 --- diff --git a/vp9/encoder/vp9_pickmode.c b/vp9/encoder/vp9_pickmode.c index 1a18d7c..918b3b1 100644 --- a/vp9/encoder/vp9_pickmode.c +++ b/vp9/encoder/vp9_pickmode.c @@ -1623,12 +1623,9 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, free_pred_buffer(this_mode_pred); this_mode_pred = current_pred; } - - if (filter < EIGHTTAP_SHARP) { - current_pred = &tmp[get_pred_buffer(tmp, 3)]; - pd->dst.buf = current_pred->data; - pd->dst.stride = bw; - } + current_pred = &tmp[get_pred_buffer(tmp, 3)]; + pd->dst.buf = current_pred->data; + pd->dst.stride = bw; } } }