From: Jingning Han Date: Thu, 12 Jul 2018 15:50:31 +0000 (-0700) Subject: Use regular filter type for tpl model motion compensation X-Git-Tag: v1.8.0~535^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8dbf0dcc67caaed0042ca97988a1fd61afb2e724;p=libvpx Use regular filter type for tpl model motion compensation This slightly improves the compression performance by 0.05%. Change-Id: Ice0b1f5e1f24a77008b093f7830e51fcd6cbfa8e --- diff --git a/vp9/encoder/vp9_encoder.c b/vp9/encoder/vp9_encoder.c index 0e243ae45..9fb380733 100644 --- a/vp9/encoder/vp9_encoder.c +++ b/vp9/encoder/vp9_encoder.c @@ -5717,7 +5717,7 @@ void mc_flow_dispenser(VP9_COMP *cpi, GF_PICTURE *gf_picture, int frame_idx) { MACROBLOCK *x = &td->mb; MACROBLOCKD *xd = &x->e_mbd; int mi_row, mi_col; - const InterpKernel *const kernel = vp9_filter_kernels[EIGHTTAP_SHARP]; + const InterpKernel *const kernel = vp9_filter_kernels[EIGHTTAP]; #if CONFIG_VP9_HIGHBITDEPTH DECLARE_ALIGNED(16, uint16_t, predictor16[32 * 32 * 3]);