Fix TEXTRELs in the ARM asm.
[profile/ivi/libvpx.git] / vp8 / common / arm / bilinearfilter_arm.h
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 BILINEARFILTER_ARM_H
13 #define BILINEARFILTER_ARM_H
14
15 extern void vp8_filter_block2d_bil_first_pass_armv6
16 (
17     const unsigned char  *src_ptr,
18     unsigned short       *dst_ptr,
19     unsigned int          src_pitch,
20     unsigned int          height,
21     unsigned int          width,
22     const short          *vp8_filter
23 );
24
25 extern void vp8_filter_block2d_bil_second_pass_armv6
26 (
27     const unsigned short *src_ptr,
28     unsigned char        *dst_ptr,
29     int                   dst_pitch,
30     unsigned int          height,
31     unsigned int          width,
32     const short         *vp8_filter
33 );
34
35 #endif /* BILINEARFILTER_ARM_H */