1/*
2 *  Copyright (c) 2011 The WebM project authors. All Rights Reserved.
3 *
4 *  Use of this source code is governed by a BSD-style license
5 *  that can be found in the LICENSE file in the root of the source
6 *  tree. An additional intellectual property rights grant can be found
7 *  in the file PATENTS.  All contributing project authors may
8 *  be found in the AUTHORS file in the root of the source tree.
9 */
10
11
12#ifndef VP8_COMMON_ARM_BILINEARFILTER_ARM_H_
13#define VP8_COMMON_ARM_BILINEARFILTER_ARM_H_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19extern void vp8_filter_block2d_bil_first_pass_armv6
20(
21    const unsigned char  *src_ptr,
22    unsigned short       *dst_ptr,
23    unsigned int          src_pitch,
24    unsigned int          height,
25    unsigned int          width,
26    const short          *vp8_filter
27);
28
29extern void vp8_filter_block2d_bil_second_pass_armv6
30(
31    const unsigned short *src_ptr,
32    unsigned char        *dst_ptr,
33    int                   dst_pitch,
34    unsigned int          height,
35    unsigned int          width,
36    const short         *vp8_filter
37);
38
39#ifdef __cplusplus
40}  // extern "C"
41#endif
42
43#endif  // VP8_COMMON_ARM_BILINEARFILTER_ARM_H_
44