Port change to highbitdepth code path This fixes the crash in encoder when configure with both highbitdepth and dual-filter. Change-Id: Ie06cc528094f4b31b7fc0ba75e7b15cae031d707
diff --git a/vp10/common/reconinter.h b/vp10/common/reconinter.h index 65b97f8..183cef6 100644 --- a/vp10/common/reconinter.h +++ b/vp10/common/reconinter.h
@@ -107,7 +107,8 @@ #if CONFIG_DUAL_FILTER if (interp_filter_params_x.taps == SUBPEL_TAPS && - interp_filter_params_y.taps == SUBPEL_TAPS) { + interp_filter_params_y.taps == SUBPEL_TAPS && + w > 2 && h > 2) { const int16_t *kernel_x = vp10_get_interp_filter_subpel_kernel(interp_filter_params_x, subpel_x); const int16_t *kernel_y =