From 8dbf0dcc67caaed0042ca97988a1fd61afb2e724 Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Thu, 12 Jul 2018 08:50:31 -0700 Subject: [PATCH] Use regular filter type for tpl model motion compensation This slightly improves the compression performance by 0.05%. Change-Id: Ice0b1f5e1f24a77008b093f7830e51fcd6cbfa8e --- vp9/encoder/vp9_encoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); -- 2.40.0