| #ifndef VP10_COMMON_VP10_CONVOLVE_H_ |
| #define VP10_COMMON_VP10_CONVOLVE_H_ |
| #include "vp10/common/filter.h" |
| void vp10_convolve(const uint8_t *src, int src_stride, |
| uint8_t *dst, int dst_stride, |
| const InterpFilterParams filter_params, |
| int xstep, int ystep, int avg); |
| #if CONFIG_VP9_HIGHBITDEPTH |
| void vp10_highbd_convolve(const uint8_t *src, int src_stride, |
| uint8_t *dst, int dst_stride, |
| const InterpFilterParams filter_params, |
| int xstep, int ystep, int avg, int bd); |
| #endif // CONFIG_VP9_HIGHBITDEPTH |
| #endif // VP10_COMMON_VP10_CONVOLVE_H_ |