Parent Directory
|
Revision Log
Revision 1.17 - (view) (download)
1 : | chl | 1.14 | /***************************************************************************** |
2 : | * | ||
3 : | * XVID MPEG-4 VIDEO CODEC | ||
4 : | * - SAD Routines header - | ||
5 : | * | ||
6 : | edgomez | 1.16 | * Copyright(C) 2002 Michael Militzer <isibaar@xvid.org> |
7 : | edgomez | 1.17 | * 2002 Peter Ross <pross@xvid.org> |
8 : | chl | 1.14 | * |
9 : | edgomez | 1.17 | * This file is part of XviD, a free MPEG-4 video encoder/decoder |
10 : | chl | 1.14 | * |
11 : | edgomez | 1.17 | * XviD is free software; you can redistribute it and/or modify it |
12 : | * under the terms of the GNU General Public License as published by | ||
13 : | chl | 1.14 | * the Free Software Foundation; either version 2 of the License, or |
14 : | * (at your option) any later version. | ||
15 : | * | ||
16 : | * This program is distributed in the hope that it will be useful, | ||
17 : | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
18 : | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
19 : | * GNU General Public License for more details. | ||
20 : | * | ||
21 : | * You should have received a copy of the GNU General Public License | ||
22 : | * along with this program; if not, write to the Free Software | ||
23 : | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
24 : | * | ||
25 : | edgomez | 1.17 | * Under section 8 of the GNU General Public License, the copyright |
26 : | * holders of XVID explicitly forbid distribution in the following | ||
27 : | * countries: | ||
28 : | * | ||
29 : | * - Japan | ||
30 : | * - United States of America | ||
31 : | * | ||
32 : | * Linking XviD statically or dynamically with other modules is making a | ||
33 : | * combined work based on XviD. Thus, the terms and conditions of the | ||
34 : | * GNU General Public License cover the whole combination. | ||
35 : | * | ||
36 : | * As a special exception, the copyright holders of XviD give you | ||
37 : | * permission to link XviD with independent modules that communicate with | ||
38 : | * XviD solely through the VFW1.1 and DShow interfaces, regardless of the | ||
39 : | * license terms of these independent modules, and to copy and distribute | ||
40 : | * the resulting combined work under terms of your choice, provided that | ||
41 : | * every copy of the combined work is accompanied by a complete copy of | ||
42 : | * the source code of XviD (the version of XviD used to produce the | ||
43 : | * combined work), being distributed under the terms of the GNU General | ||
44 : | * Public License plus this exception. An independent module is a module | ||
45 : | * which is not derived from or based on XviD. | ||
46 : | * | ||
47 : | * Note that people who make modified versions of XviD are not obligated | ||
48 : | * to grant this special exception for their modified versions; it is | ||
49 : | * their choice whether to do so. The GNU General Public License gives | ||
50 : | * permission to release a modified version without this exception; this | ||
51 : | * exception also makes it possible to release a modified version which | ||
52 : | * carries forward this exception. | ||
53 : | * | ||
54 : | * $Id$ | ||
55 : | chl | 1.14 | * |
56 : | ****************************************************************************/ | ||
57 : | |||
58 : | Isibaar | 1.1 | #ifndef _ENCODER_SAD_H_ |
59 : | #define _ENCODER_SAD_H_ | ||
60 : | |||
61 : | #include "../portab.h" | ||
62 : | |||
63 : | edgomez | 1.9 | typedef void (sadInitFunc) (void); |
64 : | typedef sadInitFunc *sadInitFuncPtr; | ||
65 : | canard | 1.4 | |
66 : | extern sadInitFuncPtr sadInit; | ||
67 : | sadInitFunc sadInit_altivec; | ||
68 : | Isibaar | 1.1 | |
69 : | suxen_drol | 1.5 | |
70 : | edgomez | 1.9 | typedef uint32_t(sad16Func) (const uint8_t * const cur, |
71 : | const uint8_t * const ref, | ||
72 : | const uint32_t stride, | ||
73 : | const uint32_t best_sad); | ||
74 : | typedef sad16Func *sad16FuncPtr; | ||
75 : | Isibaar | 1.1 | extern sad16FuncPtr sad16; |
76 : | sad16Func sad16_c; | ||
77 : | sad16Func sad16_mmx; | ||
78 : | sad16Func sad16_xmm; | ||
79 : | h | 1.6 | sad16Func sad16_sse2; |
80 : | canard | 1.2 | sad16Func sad16_altivec; |
81 : | Isibaar | 1.10 | sad16Func sad16_ia64; |
82 : | Isibaar | 1.1 | |
83 : | chl | 1.8 | sad16Func mrsad16_c; |
84 : | |||
85 : | suxen_drol | 1.5 | |
86 : | suxen_drol | 1.13 | typedef uint32_t(sad8Func) (const uint8_t * const cur, |
87 : | const uint8_t * const ref, | ||
88 : | const uint32_t stride); | ||
89 : | typedef sad8Func *sad8FuncPtr; | ||
90 : | extern sad8FuncPtr sad8; | ||
91 : | sad8Func sad8_c; | ||
92 : | sad8Func sad8_mmx; | ||
93 : | sad8Func sad8_xmm; | ||
94 : | sad8Func sad8_altivec; | ||
95 : | sad8Func sad8_ia64; | ||
96 : | |||
97 : | |||
98 : | edgomez | 1.9 | typedef uint32_t(sad16biFunc) (const uint8_t * const cur, |
99 : | const uint8_t * const ref1, | ||
100 : | const uint8_t * const ref2, | ||
101 : | const uint32_t stride); | ||
102 : | typedef sad16biFunc *sad16biFuncPtr; | ||
103 : | suxen_drol | 1.5 | extern sad16biFuncPtr sad16bi; |
104 : | sad16biFunc sad16bi_c; | ||
105 : | Isibaar | 1.10 | sad16biFunc sad16bi_ia64; |
106 : | suxen_drol | 1.13 | sad16biFunc sad16bi_mmx; |
107 : | Isibaar | 1.11 | sad16biFunc sad16bi_xmm; |
108 : | suxen_drol | 1.13 | sad16biFunc sad16bi_3dn; |
109 : | suxen_drol | 1.5 | |
110 : | Isibaar | 1.10 | |
111 : | suxen_drol | 1.13 | typedef uint32_t(sad8biFunc) (const uint8_t * const cur, |
112 : | const uint8_t * const ref1, | ||
113 : | const uint8_t * const ref2, | ||
114 : | const uint32_t stride); | ||
115 : | typedef sad8biFunc *sad8biFuncPtr; | ||
116 : | extern sad8biFuncPtr sad8bi; | ||
117 : | sad8biFunc sad8bi_c; | ||
118 : | sad8biFunc sad8bi_mmx; | ||
119 : | sad8biFunc sad8bi_xmm; | ||
120 : | sad8biFunc sad8bi_3dn; | ||
121 : | Isibaar | 1.1 | |
122 : | |||
123 : | edgomez | 1.9 | typedef uint32_t(dev16Func) (const uint8_t * const cur, |
124 : | const uint32_t stride); | ||
125 : | typedef dev16Func *dev16FuncPtr; | ||
126 : | Isibaar | 1.1 | extern dev16FuncPtr dev16; |
127 : | dev16Func dev16_c; | ||
128 : | dev16Func dev16_mmx; | ||
129 : | dev16Func dev16_xmm; | ||
130 : | h | 1.7 | dev16Func dev16_sse2; |
131 : | canard | 1.2 | dev16Func dev16_altivec; |
132 : | Isibaar | 1.10 | dev16Func dev16_ia64; |
133 : | Isibaar | 1.1 | |
134 : | /* plain c */ | ||
135 : | /* | ||
136 : | |||
137 : | uint32_t sad16(const uint8_t * const cur, | ||
138 : | const uint8_t * const ref, | ||
139 : | const uint32_t stride, | ||
140 : | const uint32_t best_sad); | ||
141 : | |||
142 : | uint32_t sad8(const uint8_t * const cur, | ||
143 : | const uint8_t * const ref, | ||
144 : | const uint32_t stride); | ||
145 : | |||
146 : | uint32_t dev16(const uint8_t * const cur, | ||
147 : | const uint32_t stride); | ||
148 : | */ | ||
149 : | /* mmx */ | ||
150 : | /* | ||
151 : | |||
152 : | uint32_t sad16_mmx(const uint8_t * const cur, | ||
153 : | const uint8_t * const ref, | ||
154 : | const uint32_t stride, | ||
155 : | const uint32_t best_sad); | ||
156 : | |||
157 : | uint32_t sad8_mmx(const uint8_t * const cur, | ||
158 : | const uint8_t * const ref, | ||
159 : | const uint32_t stride); | ||
160 : | |||
161 : | |||
162 : | uint32_t dev16_mmx(const uint8_t * const cur, | ||
163 : | const uint32_t stride); | ||
164 : | |||
165 : | */ | ||
166 : | /* xmm */ | ||
167 : | /* | ||
168 : | uint32_t sad16_xmm(const uint8_t * const cur, | ||
169 : | const uint8_t * const ref, | ||
170 : | const uint32_t stride, | ||
171 : | const uint32_t best_sad); | ||
172 : | |||
173 : | uint32_t sad8_xmm(const uint8_t * const cur, | ||
174 : | const uint8_t * const ref, | ||
175 : | const uint32_t stride); | ||
176 : | |||
177 : | uint32_t dev16_xmm(const uint8_t * const cur, | ||
178 : | const uint32_t stride); | ||
179 : | */ | ||
180 : | |||
181 : | edgomez | 1.9 | #endif /* _ENCODER_SAD_H_ */ |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |