vp9_rtcd.h revision 1184aebb761cbeac9124c37189a80a1a58f04b6b
1ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#ifndef VP9_RTCD_H_
2ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define VP9_RTCD_H_
3ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
4ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#ifdef RTCD_C
5ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define RTCD_EXTERN
6ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#else
7ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define RTCD_EXTERN extern
8ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#endif
9ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
10ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang/*
11ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang * VP9
12ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang */
13ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
14ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#include "vpx/vpx_integer.h"
15ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#include "vp9/common/vp9_enums.h"
16ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
17ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct macroblockd;
18ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
19ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang/* Encoder forward decls */
20ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct macroblock;
21ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct vp9_variance_vtable;
22ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
23ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define DEC_MVCOSTS int *mvjcost, int *mvcost[2]
24ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangunion int_mv;
25ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct yv12_buffer_config;
26ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
27ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_idct_add_16x16_c(int16_t *input, uint8_t *dest, int stride, int eob);
28ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_idct_add_16x16 vp9_idct_add_16x16_c
29ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
30ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_idct_add_8x8_c(int16_t *input, uint8_t *dest, int stride, int eob);
31ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_idct_add_8x8 vp9_idct_add_8x8_c
32ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
33ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_idct_add_c(int16_t *input, uint8_t *dest, int stride, int eob);
34ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_idct_add vp9_idct_add_c
35ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
36ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_idct_add_32x32_c(int16_t *q, uint8_t *dst, int stride, int eob);
37ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_idct_add_32x32 vp9_idct_add_32x32_c
38ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
391184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d207_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
401184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_d207_predictor_4x4 vp9_d207_predictor_4x4_c
41ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
421184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d45_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
4391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d45_predictor_4x4 vp9_d45_predictor_4x4_c
44ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
451184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d63_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
4691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d63_predictor_4x4 vp9_d63_predictor_4x4_c
47ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
481184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_h_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
4991037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_h_predictor_4x4 vp9_h_predictor_4x4_c
50ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
511184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d117_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
5291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d117_predictor_4x4 vp9_d117_predictor_4x4_c
53ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
541184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d135_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
5591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d135_predictor_4x4 vp9_d135_predictor_4x4_c
56ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
571184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d153_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
5891037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d153_predictor_4x4 vp9_d153_predictor_4x4_c
5991037db265ecdd914a26e056cf69207b4f50924ehkuang
601184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_v_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
6191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_v_predictor_4x4 vp9_v_predictor_4x4_c
6291037db265ecdd914a26e056cf69207b4f50924ehkuang
631184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_tm_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
6491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_tm_predictor_4x4 vp9_tm_predictor_4x4_c
6591037db265ecdd914a26e056cf69207b4f50924ehkuang
661184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
6791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_predictor_4x4 vp9_dc_predictor_4x4_c
6891037db265ecdd914a26e056cf69207b4f50924ehkuang
691184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_top_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
7091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_top_predictor_4x4 vp9_dc_top_predictor_4x4_c
7191037db265ecdd914a26e056cf69207b4f50924ehkuang
721184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_left_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
7391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_left_predictor_4x4 vp9_dc_left_predictor_4x4_c
7491037db265ecdd914a26e056cf69207b4f50924ehkuang
751184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_128_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
7691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_128_predictor_4x4 vp9_dc_128_predictor_4x4_c
7791037db265ecdd914a26e056cf69207b4f50924ehkuang
781184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d207_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
791184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_d207_predictor_8x8 vp9_d207_predictor_8x8_c
8091037db265ecdd914a26e056cf69207b4f50924ehkuang
811184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d45_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
8291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d45_predictor_8x8 vp9_d45_predictor_8x8_c
8391037db265ecdd914a26e056cf69207b4f50924ehkuang
841184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d63_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
8591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d63_predictor_8x8 vp9_d63_predictor_8x8_c
8691037db265ecdd914a26e056cf69207b4f50924ehkuang
871184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_h_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
8891037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_h_predictor_8x8 vp9_h_predictor_8x8_c
8991037db265ecdd914a26e056cf69207b4f50924ehkuang
901184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d117_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
9191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d117_predictor_8x8 vp9_d117_predictor_8x8_c
9291037db265ecdd914a26e056cf69207b4f50924ehkuang
931184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d135_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
9491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d135_predictor_8x8 vp9_d135_predictor_8x8_c
9591037db265ecdd914a26e056cf69207b4f50924ehkuang
961184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d153_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
9791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d153_predictor_8x8 vp9_d153_predictor_8x8_c
9891037db265ecdd914a26e056cf69207b4f50924ehkuang
991184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_v_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
10091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_v_predictor_8x8 vp9_v_predictor_8x8_c
10191037db265ecdd914a26e056cf69207b4f50924ehkuang
1021184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_tm_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
10391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_tm_predictor_8x8 vp9_tm_predictor_8x8_c
10491037db265ecdd914a26e056cf69207b4f50924ehkuang
1051184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
10691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_predictor_8x8 vp9_dc_predictor_8x8_c
10791037db265ecdd914a26e056cf69207b4f50924ehkuang
1081184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_top_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
10991037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_top_predictor_8x8 vp9_dc_top_predictor_8x8_c
11091037db265ecdd914a26e056cf69207b4f50924ehkuang
1111184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_left_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
11291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_left_predictor_8x8 vp9_dc_left_predictor_8x8_c
11391037db265ecdd914a26e056cf69207b4f50924ehkuang
1141184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_128_predictor_8x8_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
11591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_128_predictor_8x8 vp9_dc_128_predictor_8x8_c
11691037db265ecdd914a26e056cf69207b4f50924ehkuang
1171184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d207_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
1181184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_d207_predictor_16x16 vp9_d207_predictor_16x16_c
11991037db265ecdd914a26e056cf69207b4f50924ehkuang
1201184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d45_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
12191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d45_predictor_16x16 vp9_d45_predictor_16x16_c
12291037db265ecdd914a26e056cf69207b4f50924ehkuang
1231184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d63_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
12491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d63_predictor_16x16 vp9_d63_predictor_16x16_c
12591037db265ecdd914a26e056cf69207b4f50924ehkuang
1261184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_h_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
12791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_h_predictor_16x16 vp9_h_predictor_16x16_c
12891037db265ecdd914a26e056cf69207b4f50924ehkuang
1291184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d117_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
13091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d117_predictor_16x16 vp9_d117_predictor_16x16_c
13191037db265ecdd914a26e056cf69207b4f50924ehkuang
1321184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d135_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
13391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d135_predictor_16x16 vp9_d135_predictor_16x16_c
13491037db265ecdd914a26e056cf69207b4f50924ehkuang
1351184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d153_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
13691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d153_predictor_16x16 vp9_d153_predictor_16x16_c
13791037db265ecdd914a26e056cf69207b4f50924ehkuang
1381184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_v_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
13991037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_v_predictor_16x16 vp9_v_predictor_16x16_c
14091037db265ecdd914a26e056cf69207b4f50924ehkuang
1411184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_tm_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
14291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_tm_predictor_16x16 vp9_tm_predictor_16x16_c
14391037db265ecdd914a26e056cf69207b4f50924ehkuang
1441184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
14591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_predictor_16x16 vp9_dc_predictor_16x16_c
14691037db265ecdd914a26e056cf69207b4f50924ehkuang
1471184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_top_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
14891037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_top_predictor_16x16 vp9_dc_top_predictor_16x16_c
14991037db265ecdd914a26e056cf69207b4f50924ehkuang
1501184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_left_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
15191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_left_predictor_16x16 vp9_dc_left_predictor_16x16_c
15291037db265ecdd914a26e056cf69207b4f50924ehkuang
1531184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_128_predictor_16x16_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
15491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_128_predictor_16x16 vp9_dc_128_predictor_16x16_c
15591037db265ecdd914a26e056cf69207b4f50924ehkuang
1561184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d207_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
1571184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_d207_predictor_32x32 vp9_d207_predictor_32x32_c
15891037db265ecdd914a26e056cf69207b4f50924ehkuang
1591184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d45_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
16091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d45_predictor_32x32 vp9_d45_predictor_32x32_c
16191037db265ecdd914a26e056cf69207b4f50924ehkuang
1621184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d63_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
16391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d63_predictor_32x32 vp9_d63_predictor_32x32_c
16491037db265ecdd914a26e056cf69207b4f50924ehkuang
1651184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_h_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
16691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_h_predictor_32x32 vp9_h_predictor_32x32_c
16791037db265ecdd914a26e056cf69207b4f50924ehkuang
1681184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d117_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
16991037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d117_predictor_32x32 vp9_d117_predictor_32x32_c
17091037db265ecdd914a26e056cf69207b4f50924ehkuang
1711184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d135_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
17291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d135_predictor_32x32 vp9_d135_predictor_32x32_c
17391037db265ecdd914a26e056cf69207b4f50924ehkuang
1741184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_d153_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
17591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_d153_predictor_32x32 vp9_d153_predictor_32x32_c
17691037db265ecdd914a26e056cf69207b4f50924ehkuang
1771184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_v_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
17891037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_v_predictor_32x32 vp9_v_predictor_32x32_c
17991037db265ecdd914a26e056cf69207b4f50924ehkuang
1801184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_tm_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
18191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_tm_predictor_32x32 vp9_tm_predictor_32x32_c
18291037db265ecdd914a26e056cf69207b4f50924ehkuang
1831184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
18491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_predictor_32x32 vp9_dc_predictor_32x32_c
18591037db265ecdd914a26e056cf69207b4f50924ehkuang
1861184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_top_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
18791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_top_predictor_32x32 vp9_dc_top_predictor_32x32_c
18891037db265ecdd914a26e056cf69207b4f50924ehkuang
1891184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_left_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
19091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_left_predictor_32x32 vp9_dc_left_predictor_32x32_c
19191037db265ecdd914a26e056cf69207b4f50924ehkuang
1921184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_dc_128_predictor_32x32_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *above, const uint8_t *left);
19391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_dc_128_predictor_32x32 vp9_dc_128_predictor_32x32_c
194ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
195ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_add_constant_residual_8x8_c(const int16_t diff, uint8_t *dest, int stride);
19691037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_add_constant_residual_8x8_neon(const int16_t diff, uint8_t *dest, int stride);
19791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_add_constant_residual_8x8 vp9_add_constant_residual_8x8_neon
198ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
199ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_add_constant_residual_16x16_c(const int16_t diff, uint8_t *dest, int stride);
20091037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_add_constant_residual_16x16_neon(const int16_t diff, uint8_t *dest, int stride);
20191037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_add_constant_residual_16x16 vp9_add_constant_residual_16x16_neon
202ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
203ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_add_constant_residual_32x32_c(const int16_t diff, uint8_t *dest, int stride);
20491037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_add_constant_residual_32x32_neon(const int16_t diff, uint8_t *dest, int stride);
20591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_add_constant_residual_32x32 vp9_add_constant_residual_32x32_neon
206ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
207ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_mb_lpf_vertical_edge_w_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh);
208f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuangvoid vp9_mb_lpf_vertical_edge_w_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh);
209f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuang#define vp9_mb_lpf_vertical_edge_w vp9_mb_lpf_vertical_edge_w_neon
210ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
211ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_mbloop_filter_vertical_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
21291037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_mbloop_filter_vertical_edge_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
21391037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_mbloop_filter_vertical_edge vp9_mbloop_filter_vertical_edge_neon
214ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
215ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_loop_filter_vertical_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
21691037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_loop_filter_vertical_edge_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
21791037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_loop_filter_vertical_edge vp9_loop_filter_vertical_edge_neon
218ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
21991037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_mb_lpf_horizontal_edge_w_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
220f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuangvoid vp9_mb_lpf_horizontal_edge_w_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
221f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuang#define vp9_mb_lpf_horizontal_edge_w vp9_mb_lpf_horizontal_edge_w_neon
222ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
223ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_mbloop_filter_horizontal_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
22491037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_mbloop_filter_horizontal_edge_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
22591037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_mbloop_filter_horizontal_edge vp9_mbloop_filter_horizontal_edge_neon
226ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
227ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_loop_filter_horizontal_edge_c(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
22891037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_loop_filter_horizontal_edge_neon(uint8_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count);
22991037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_loop_filter_horizontal_edge vp9_loop_filter_horizontal_edge_neon
230ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
231ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_blend_mb_inner_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
232ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_blend_mb_inner vp9_blend_mb_inner_c
233ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
234ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_blend_mb_outer_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
235ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_blend_mb_outer vp9_blend_mb_outer_c
236ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
237ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_blend_b_c(uint8_t *y, uint8_t *u, uint8_t *v, int y1, int u1, int v1, int alpha, int stride);
238ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_blend_b vp9_blend_b_c
239ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
24091037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve_copy_c(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);
2411184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_convolve_copy_neon(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);
2421184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_convolve_copy vp9_convolve_copy_neon
243ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
24491037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve_avg_c(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);
2451184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_convolve_avg_neon(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);
2461184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_convolve_avg vp9_convolve_avg_neon
247ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
24891037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_c(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);
24991037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_neon(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);
25091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8 vp9_convolve8_neon
251ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
25291037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_horiz_c(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);
25391037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_horiz_neon(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);
25491037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8_horiz vp9_convolve8_horiz_neon
255ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
25691037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_vert_c(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);
25791037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_vert_neon(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);
25891037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8_vert vp9_convolve8_vert_neon
259ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
26091037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_c(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);
26191037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_neon(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);
26291037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8_avg vp9_convolve8_avg_neon
26391037db265ecdd914a26e056cf69207b4f50924ehkuang
26491037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_horiz_c(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);
26591037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_horiz_neon(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);
26691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8_avg_horiz vp9_convolve8_avg_horiz_neon
26791037db265ecdd914a26e056cf69207b4f50924ehkuang
26891037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_vert_c(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);
26991037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_convolve8_avg_vert_neon(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);
27091037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_convolve8_avg_vert vp9_convolve8_avg_vert_neon
271ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
272ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct4x4_1_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2731184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct4x4_1_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2741184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct4x4_1_add vp9_short_idct4x4_1_add_neon
275ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
276ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct4x4_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2771184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct4x4_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2781184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct4x4_add vp9_short_idct4x4_add_neon
279ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
280f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuangvoid vp9_short_idct8x8_1_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2811184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct8x8_1_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2821184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct8x8_1_add vp9_short_idct8x8_1_add_neon
283f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuang
284ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride);
28591037db265ecdd914a26e056cf69207b4f50924ehkuangvoid vp9_short_idct8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
28691037db265ecdd914a26e056cf69207b4f50924ehkuang#define vp9_short_idct8x8_add vp9_short_idct8x8_add_neon
287ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
288ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct10_8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2891184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct10_8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2901184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct10_8x8_add vp9_short_idct10_8x8_add_neon
291ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
292f3bed9137f66ef693bd406e43b17e9a1114f1e14hkuangvoid vp9_short_idct16x16_1_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2931184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct16x16_1_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2941184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct16x16_1_add vp9_short_idct16x16_1_add_neon
295ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
296ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride);
2971184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
2981184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct16x16_add vp9_short_idct16x16_add_neon
299ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
300ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct10_16x16_add_c(int16_t *input, uint8_t *dest, int dest_stride);
3011184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct10_16x16_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
3021184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct10_16x16_add vp9_short_idct10_16x16_add_neon
303ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
304ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct32x32_add_c(int16_t *input, uint8_t *dest, int dest_stride);
3051184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_idct32x32_add_neon(int16_t *input, uint8_t *dest, int dest_stride);
3061184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_idct32x32_add vp9_short_idct32x32_add_neon
307ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
308ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_idct1_32x32_c(int16_t *input, int16_t *output);
309ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_short_idct1_32x32 vp9_short_idct1_32x32_c
310ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
311ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_iht4x4_add_c(int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
3121184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_iht4x4_add_neon(int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
3131184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_iht4x4_add vp9_short_iht4x4_add_neon
314ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
315ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_iht8x8_add_c(int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
3161184aebb761cbeac9124c37189a80a1a58f04b6bhkuangvoid vp9_short_iht8x8_add_neon(int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
3171184aebb761cbeac9124c37189a80a1a58f04b6bhkuang#define vp9_short_iht8x8_add vp9_short_iht8x8_add_neon
318ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
319ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_iht16x16_add_c(int16_t *input, uint8_t *output, int pitch, int tx_type);
320ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_short_iht16x16_add vp9_short_iht16x16_add_c
321ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
322ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_idct4_1d_c(int16_t *input, int16_t *output);
323ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_idct4_1d vp9_idct4_1d_c
324ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
325ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_iwalsh4x4_1_add_c(int16_t *input, uint8_t *dest, int dest_stride);
326ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_short_iwalsh4x4_1_add vp9_short_iwalsh4x4_1_add_c
327ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
328ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_short_iwalsh4x4_add_c(int16_t *input, uint8_t *dest, int dest_stride);
329ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define vp9_short_iwalsh4x4_add vp9_short_iwalsh4x4_add_c
330ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
331ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangvoid vp9_rtcd(void);
332ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#include "vpx_config.h"
333ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
334ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#ifdef RTCD_C
335ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#include "vpx_ports/arm.h"
336ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstatic void setup_rtcd_internal(void)
337ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang{
338ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang    int flags = arm_cpu_caps();
339ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
340ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang    (void)flags;
341ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
342ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang
343ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang}
344ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#endif
345ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#endif
346