]> granicus.if.org Git - libvpx/commitdiff
Use regular filter type for tpl model motion compensation
authorJingning Han <jingning@google.com>
Thu, 12 Jul 2018 15:50:31 +0000 (08:50 -0700)
committerJingning Han <jingning@google.com>
Thu, 12 Jul 2018 15:50:31 +0000 (08:50 -0700)
This slightly improves the compression performance by 0.05%.

Change-Id: Ice0b1f5e1f24a77008b093f7830e51fcd6cbfa8e

vp9/encoder/vp9_encoder.c

index 0e243ae4507f0b8e8c202429f18246a59f527878..9fb380733de99de5059fb76328890bcb92b93fa9 100644 (file)
@@ -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]);