Merge "documentation: minor cosmetics"
[libvpx.git] / vp8 / common / arm / bilinearfilter_arm.h
blobb7155d3f0a5c6413b89786055a9669e08442293f
1 /*
2 * Copyright (c) 2011 The WebM project authors. All Rights Reserved.
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 */
12 #ifndef BILINEARFILTER_ARM_H
13 #define BILINEARFILTER_ARM_H
15 extern void vp8_filter_block2d_bil_first_pass_armv6
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
25 extern void vp8_filter_block2d_bil_second_pass_armv6
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
35 #endif /* BILINEARFILTER_ARM_H */