| Index: source/libvpx/vp9/common/vp9_convolve.h
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_convolve.h (revision 292072)
|
| +++ source/libvpx/vp9/common/vp9_convolve.h (working copy)
|
| @@ -23,6 +23,14 @@
|
| 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
|
|
|