fix vp10_convolve() signatures fortunately, the call site was calling the function with the correct parameter order. Change-Id: Ia48099c18288a2416c8b9a7062d2b8d417fd07df
diff --git a/vp10/common/vp10_convolve.c b/vp10/common/vp10_convolve.c index 5b1d921..32e63ad 100644 --- a/vp10/common/vp10_convolve.c +++ b/vp10/common/vp10_convolve.c
@@ -102,8 +102,8 @@ #else const INTERP_FILTER interp_filter, #endif - const int subpel_x_q4, int x_step_q4, const int subpel_y_q4, - int y_step_q4, int ref_idx) { + const int subpel_x_q4, int x_step_q4, + const int subpel_y_q4, int y_step_q4, int ref_idx) { int ignore_horiz = x_step_q4 == 16 && subpel_x_q4 == 0; int ignore_vert = y_step_q4 == 16 && subpel_y_q4 == 0;
diff --git a/vp10/common/vp10_convolve.h b/vp10/common/vp10_convolve.h index 13f87fc..2cc57fe 100644 --- a/vp10/common/vp10_convolve.h +++ b/vp10/common/vp10_convolve.h
@@ -14,9 +14,8 @@ #else const INTERP_FILTER interp_filter, #endif - const int subpel_x, - const int subpel_y, - int xstep, int ystep, int avg); + const int subpel_x, int xstep, + const int subpel_y, int ystep, int avg); #if CONFIG_VP9_HIGHBITDEPTH void vp10_highbd_convolve(const uint8_t *src, int src_stride, @@ -27,9 +26,9 @@ #else const INTERP_FILTER interp_filter, #endif - const int subpel_x, - const int subpel_y, - int xstep, int ystep, int avg, int bd); + const int subpel_x, int xstep, + const int subpel_y, int ystep, + int avg, int bd); #endif // CONFIG_VP9_HIGHBITDEPTH #ifdef __cplusplus