From 0d3c3d3ce74c3a1c30c8bc17f3389ac19e1ace5b Mon Sep 17 00:00:00 2001 From: Deb Mukherjee Date: Tue, 16 Sep 2014 12:47:18 -0700 Subject: Adds high bitdepth convolve, interpred & scaling Change-Id: Ie51c352a6b250547207cbc1ebba833a01ed053e3 --- vp9/common/vp9_convolve.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'vp9/common/vp9_convolve.h') diff --git a/vp9/common/vp9_convolve.h b/vp9/common/vp9_convolve.h index 6bf71fc79..faf70b12a 100644 --- a/vp9/common/vp9_convolve.h +++ b/vp9/common/vp9_convolve.h @@ -23,6 +23,14 @@ typedef void (*convolve_fn_t)(const uint8_t *src, ptrdiff_t src_stride, const int16_t *filter_y, int y_step_q4, int w, int h); +#if CONFIG_VP9_HIGHBITDEPTH +typedef void (*high_convolve_fn_t)(const uint8_t *src, ptrdiff_t src_stride, + uint8_t *dst, ptrdiff_t dst_stride, + const int16_t *filter_x, int x_step_q4, + const int16_t *filter_y, int y_step_q4, + int w, int h, int bd); +#endif + #ifdef __cplusplus } // extern "C" #endif -- cgit v1.2.3