| Index: source/libvpx/vp9/common/vp9_filter.h
|
| ===================================================================
|
| --- source/libvpx/vp9/common/vp9_filter.h (revision 254565)
|
| +++ source/libvpx/vp9/common/vp9_filter.h (working copy)
|
| @@ -13,7 +13,9 @@
|
|
|
| #include "./vpx_config.h"
|
| #include "vpx/vpx_integer.h"
|
| +#include "vpx_ports/mem.h"
|
|
|
| +
|
| #ifdef __cplusplus
|
| extern "C" {
|
| #endif
|
| @@ -37,10 +39,14 @@
|
|
|
| const InterpKernel *vp9_get_interp_kernel(INTERP_FILTER filter);
|
|
|
| -extern const InterpKernel vp9_bilinear_filters[SUBPEL_SHIFTS];
|
| -extern const InterpKernel vp9_sub_pel_filters_8[SUBPEL_SHIFTS];
|
| -extern const InterpKernel vp9_sub_pel_filters_8s[SUBPEL_SHIFTS];
|
| -extern const InterpKernel vp9_sub_pel_filters_8lp[SUBPEL_SHIFTS];
|
| +DECLARE_ALIGNED(256, extern const InterpKernel,
|
| + vp9_bilinear_filters[SUBPEL_SHIFTS]);
|
| +DECLARE_ALIGNED(256, extern const InterpKernel,
|
| + vp9_sub_pel_filters_8[SUBPEL_SHIFTS]);
|
| +DECLARE_ALIGNED(256, extern const InterpKernel,
|
| + vp9_sub_pel_filters_8s[SUBPEL_SHIFTS]);
|
| +DECLARE_ALIGNED(256, extern const InterpKernel,
|
| + vp9_sub_pel_filters_8lp[SUBPEL_SHIFTS]);
|
|
|
| // The VP9_BILINEAR_FILTERS_2TAP macro returns a pointer to the bilinear
|
| // filter kernel as a 2 tap filter.
|
|
|