summaryrefslogtreecommitdiffstats
path: root/common/ihevc_weighted_pred.h
blob: aaf9797ad6646b09119321715553bb0834d7a9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/******************************************************************************
*
* Copyright (C) 2012 Ittiam Systems Pvt Ltd, Bangalore
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
/**
*******************************************************************************
* @file
*  ihevc_weighted_pred.h
*
* @brief
*  Function declarations used for buffer management
*
* @author
*  Srinivas T
*
* @remarks
*  None
*
*******************************************************************************
*/

#ifndef IHEVC_WEIGHTED_PRED_H_
#define IHEVC_WEIGHTED_PRED_H_

typedef void ihevc_weighted_pred_uni_ft(WORD16 *pi2_src,
                                        UWORD8 *pu1_dst,
                                        WORD32 src_strd,
                                        WORD32 dst_strd,
                                        WORD32 wgt0,
                                        WORD32 off0,
                                        WORD32 shift,
                                        WORD32 lvl_shift,
                                        WORD32 ht,
                                        WORD32 wd);

typedef void ihevc_weighted_pred_chroma_uni_ft(WORD16 *pi2_src,
                                               UWORD8 *pu1_dst,
                                               WORD32 src_strd,
                                               WORD32 dst_strd,
                                               WORD32 wgt0_cb,
                                               WORD32 wgt0_cr,
                                               WORD32 off0_cb,
                                               WORD32 off0_cr,
                                               WORD32 shift,
                                               WORD32 lvl_shift,
                                               WORD32 ht,
                                               WORD32 wd);

typedef void ihevc_weighted_pred_bi_ft(WORD16 *pi2_src1,
                                       WORD16 *pi2_src2,
                                       UWORD8 *pu1_dst,
                                       WORD32 src_strd1,
                                       WORD32 src_strd2,
                                       WORD32 dst_strd,
                                       WORD32 wgt0,
                                       WORD32 off0,
                                       WORD32 wgt1,
                                       WORD32 off1,
                                       WORD32 shift,
                                       WORD32 lvl_shift1,
                                       WORD32 lvl_shift2,
                                       WORD32 ht,
                                       WORD32 wd);

typedef void ihevc_weighted_pred_chroma_bi_ft(WORD16 *pi2_src1,
                                              WORD16 *pi2_src2,
                                              UWORD8 *pu1_dst,
                                              WORD32 src_strd1,
                                              WORD32 src_strd2,
                                              WORD32 dst_strd,
                                              WORD32 wgt0_cb,
                                              WORD32 wgt0_cr,
                                              WORD32 off0_cb,
                                              WORD32 off0_cr,
                                              WORD32 wgt1_cb,
                                              WORD32 wgt1_cr,
                                              WORD32 off1_cb,
                                              WORD32 off1_cr,
                                              WORD32 shift,
                                              WORD32 lvl_shift1,
                                              WORD32 lvl_shift2,
                                              WORD32 ht,
                                              WORD32 wd);

typedef void ihevc_weighted_pred_bi_default_ft(WORD16 *pi2_src1,
                                               WORD16 *pi2_src2,
                                               UWORD8 *pu1_dst,
                                               WORD32 src_strd1,
                                               WORD32 src_strd2,
                                               WORD32 dst_strd,
                                               WORD32 lvl_shift1,
                                               WORD32 lvl_shift2,
                                               WORD32 ht,
                                               WORD32 wd);

typedef void ihevc_weighted_pred_chroma_bi_default_ft(WORD16 *pi2_src1,
                                                      WORD16 *pi2_src2,
                                                      UWORD8 *pu1_dst,
                                                      WORD32 src_strd1,
                                                      WORD32 src_strd2,
                                                      WORD32 dst_strd,
                                                      WORD32 lvl_shift1,
                                                      WORD32 lvl_shift2,
                                                      WORD32 ht,
                                                      WORD32 wd);
/* C function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default;

/* A9 Q function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_a9q;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_a9q;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_a9q;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_a9q;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_a9q;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_a9q;

/* A9 A function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_a9a;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_a9a;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_a9a;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_a9a;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_a9a;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_a9a;

/* NEONINTR function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_neonintr;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_neonintr;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_neonintr;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_neonintr;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_neonintr;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_neonintr;
/* SSSE3 function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_ssse3;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_ssse3;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_ssse3;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_ssse3;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_ssse3;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_ssse3;

/* SSE42 function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_sse42;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_sse42;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_sse42;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_sse42;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_sse42;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_sse42;

/* AVX2 function declarations */
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_avx2;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_avx2;

/* armv8 function declarations */
ihevc_weighted_pred_uni_ft ihevc_weighted_pred_uni_av8;
ihevc_weighted_pred_chroma_uni_ft ihevc_weighted_pred_chroma_uni_av8;
ihevc_weighted_pred_bi_ft ihevc_weighted_pred_bi_av8;
ihevc_weighted_pred_chroma_bi_ft ihevc_weighted_pred_chroma_bi_av8;
ihevc_weighted_pred_bi_default_ft ihevc_weighted_pred_bi_default_av8;
ihevc_weighted_pred_chroma_bi_default_ft ihevc_weighted_pred_chroma_bi_default_av8;

#endif /* IHEVC_WEIGHTED_PRED_H_ */