[cvs] / xvidcore / src / xvid.c Repository:
ViewVC logotype

Annotation of /xvidcore/src/xvid.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.58 - (view) (download)

1 : edgomez 1.16 /*****************************************************************************
2 : edgomez 1.17 *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Native API implementation -
5 :     *
6 : suxen_drol 1.49 * Copyright(C) 2001-2004 Peter Ross <pross@xvid.org>
7 : edgomez 1.48 *
8 : edgomez 1.41 * This program is free software ; you can redistribute it and/or modify
9 :     * it under the terms of the GNU General Public License as published by
10 :     * the Free Software Foundation ; either version 2 of the License, or
11 : edgomez 1.17 * (at your option) any later version.
12 :     *
13 :     * This program is distributed in the hope that it will be useful,
14 : edgomez 1.41 * but WITHOUT ANY WARRANTY ; without even the implied warranty of
15 : edgomez 1.17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 :     * GNU General Public License for more details.
17 :     *
18 :     * You should have received a copy of the GNU General Public License
19 : edgomez 1.41 * along with this program ; if not, write to the Free Software
20 : edgomez 1.17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 :     *
22 : edgomez 1.58 * $Id$
23 : edgomez 1.36 *
24 : edgomez 1.17 ****************************************************************************/
25 : chenm001 1.29
26 : edgomez 1.41 #include <stdio.h>
27 :     #include <stdlib.h>
28 :     #include <string.h>
29 :     #include <time.h>
30 :    
31 : Isibaar 1.1 #include "xvid.h"
32 :     #include "decoder.h"
33 :     #include "encoder.h"
34 :     #include "bitstream/cbp.h"
35 :     #include "dct/idct.h"
36 :     #include "dct/fdct.h"
37 :     #include "image/colorspace.h"
38 :     #include "image/interpolate8x8.h"
39 :     #include "utils/mem_transfer.h"
40 : edgomez 1.41 #include "utils/mbfunctions.h"
41 : edgomez 1.48 #include "quant/quant.h"
42 : ia64p 1.30 #include "motion/motion.h"
43 : Isibaar 1.1 #include "motion/sad.h"
44 :     #include "utils/emms.h"
45 :     #include "utils/timer.h"
46 : Isibaar 1.9 #include "bitstream/mbcoding.h"
47 : edgomez 1.48 #include "image/qpel.h"
48 :     #include "image/postprocessing.h"
49 :    
50 :     #if defined(_DEBUG)
51 :     unsigned int xvid_debug = 0; /* xvid debug mask */
52 :     #endif
53 : Isibaar 1.1
54 : edgomez 1.50 #if defined(ARCH_IS_IA32) && defined(_MSC_VER)
55 : edgomez 1.41 # include <windows.h>
56 : edgomez 1.50 #elif defined(ARCH_IS_IA32) || defined(ARCH_IS_PPC)
57 : edgomez 1.41 # include <signal.h>
58 :     # include <setjmp.h>
59 : suxen_drol 1.31
60 : edgomez 1.41 static jmp_buf mark;
61 : suxen_drol 1.31
62 : edgomez 1.41 static void
63 :     sigill_handler(int signal)
64 :     {
65 :     longjmp(mark, 1);
66 :     }
67 : suxen_drol 1.31 #endif
68 :    
69 :    
70 :     /*
71 : edgomez 1.43 * Calls the funcptr, and returns whether SIGILL (illegal instruction) was
72 :     * signalled
73 :     *
74 :     * Return values:
75 :     * -1 : could not determine
76 :     * 0 : SIGILL was *not* signalled
77 :     * 1 : SIGILL was signalled
78 :     */
79 : edgomez 1.50 #if defined(ARCH_IS_IA32) && defined(_MSC_VER)
80 :     static int
81 : suxen_drol 1.31 sigill_check(void (*func)())
82 :     {
83 :     _try {
84 :     func();
85 : edgomez 1.50 } _except(EXCEPTION_EXECUTE_HANDLER) {
86 : suxen_drol 1.31
87 :     if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)
88 : edgomez 1.50 return(1);
89 : suxen_drol 1.31 }
90 : edgomez 1.50 return(0);
91 :     }
92 :     #elif defined(ARCH_IS_IA32) || defined(ARCH_IS_PPC)
93 :     static int
94 :     sigill_check(void (*func)())
95 :     {
96 :     void *old_handler;
97 : suxen_drol 1.31 int jmpret;
98 :    
99 : edgomez 1.50 /* Set our SIGILL handler */
100 :     old_handler = signal(SIGILL, sigill_handler);
101 : suxen_drol 1.31
102 : edgomez 1.50 /* Check for error */
103 :     if (old_handler == SIG_ERR) {
104 :     return(-1);
105 : suxen_drol 1.31 }
106 :    
107 : edgomez 1.50 /* Save stack context, so if func triggers a SIGILL, we can still roll
108 :     * back to a valid CPU state */
109 :     jmpret = setjmp(mark);
110 :    
111 :     /* If setjmp returned directly, then its returned value is 0, and we still
112 :     * have to test the passed func. Otherwise it means the stack context has
113 :     * been restored by a longjmp() call, which in our case happens only in the
114 :     * signal handler */
115 :     if (jmpret == 0) {
116 : suxen_drol 1.31 func();
117 :     }
118 :    
119 : edgomez 1.50 /* Restore old signal handler */
120 : suxen_drol 1.31 signal(SIGILL, old_handler);
121 :    
122 : edgomez 1.50 return(jmpret);
123 : suxen_drol 1.31 }
124 :     #endif
125 :    
126 : edgomez 1.41
127 :     /* detect cpu flags */
128 :     static unsigned int
129 :     detect_cpu_flags()
130 :     {
131 :     /* enable native assembly optimizations by default */
132 :     unsigned int cpu_flags = XVID_CPU_ASM;
133 :    
134 :     #if defined(ARCH_IS_IA32)
135 :     cpu_flags |= check_cpu_features();
136 :     if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
137 :     cpu_flags &= ~XVID_CPU_SSE;
138 :    
139 :     if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))
140 :     cpu_flags &= ~XVID_CPU_SSE2;
141 :     #endif
142 :    
143 :     #if defined(ARCH_IS_PPC)
144 : edgomez 1.50 if (!sigill_check(altivec_trigger))
145 :     cpu_flags |= XVID_CPU_ALTIVEC;
146 : edgomez 1.41 #endif
147 :    
148 :     return cpu_flags;
149 :     }
150 :    
151 :    
152 : edgomez 1.16 /*****************************************************************************
153 :     * XviD Init Entry point
154 :     *
155 :     * Well this function initialize all internal function pointers according
156 :     * to the CPU features forced by the library client or autodetected (depending
157 :     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
158 :     * image colorspace transformation tables.
159 : edgomez 1.48 *
160 : edgomez 1.16 * Returned value : XVID_ERR_OK
161 :     * + API_VERSION in the input XVID_INIT_PARAM structure
162 :     * + core build " " " " "
163 :     *
164 :     ****************************************************************************/
165 :    
166 : edgomez 1.41
167 : edgomez 1.48 static
168 :     int xvid_gbl_init(xvid_gbl_init_t * init)
169 : Isibaar 1.1 {
170 : edgomez 1.48 unsigned int cpu_flags;
171 : suxen_drol 1.21
172 : edgomez 1.48 if (XVID_VERSION_MAJOR(init->version) != 1) /* v1.x.x */
173 :     return XVID_ERR_VERSION;
174 : suxen_drol 1.31
175 : edgomez 1.48 cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
176 : Isibaar 1.1
177 : edgomez 1.16 /* Initialize the function pointers */
178 : Isibaar 1.1 idct_int32_init();
179 : Isibaar 1.9 init_vlc_tables();
180 :    
181 : edgomez 1.16 /* Fixed Point Forward/Inverse DCT transformations */
182 : Isibaar 1.1 fdct = fdct_int32;
183 :     idct = idct_int32;
184 :    
185 : edgomez 1.16 /* Only needed on PPC Altivec archs */
186 : canard 1.10 sadInit = 0;
187 : edgomez 1.15
188 : edgomez 1.16 /* Restore FPU context : emms_c is a nop functions */
189 : Isibaar 1.1 emms = emms_c;
190 :    
191 : edgomez 1.48 /* Qpel stuff */
192 :     xvid_QP_Funcs = &xvid_QP_Funcs_C;
193 :     xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_C;
194 :     xvid_Init_QP();
195 :    
196 : edgomez 1.16 /* Quantization functions */
197 : edgomez 1.48 quant_h263_intra = quant_h263_intra_c;
198 :     quant_h263_inter = quant_h263_inter_c;
199 :     dequant_h263_intra = dequant_h263_intra_c;
200 :     dequant_h263_inter = dequant_h263_inter_c;
201 :    
202 :     quant_mpeg_intra = quant_mpeg_intra_c;
203 :     quant_mpeg_inter = quant_mpeg_inter_c;
204 :     dequant_mpeg_intra = dequant_mpeg_intra_c;
205 :     dequant_mpeg_inter = dequant_mpeg_inter_c;
206 : Isibaar 1.1
207 : edgomez 1.16 /* Block transfer related functions */
208 : Isibaar 1.1 transfer_8to16copy = transfer_8to16copy_c;
209 :     transfer_16to8copy = transfer_16to8copy_c;
210 : edgomez 1.16 transfer_8to16sub = transfer_8to16sub_c;
211 : edgomez 1.41 transfer_8to16subro = transfer_8to16subro_c;
212 : suxen_drol 1.11 transfer_8to16sub2 = transfer_8to16sub2_c;
213 : edgomez 1.16 transfer_16to8add = transfer_16to8add_c;
214 :     transfer8x8_copy = transfer8x8_copy_c;
215 : Isibaar 1.1
216 : edgomez 1.41 /* Interlacing functions */
217 :     MBFieldTest = MBFieldTest_c;
218 :    
219 : edgomez 1.16 /* Image interpolation related functions */
220 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_c;
221 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_c;
222 : Isibaar 1.1 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
223 :    
224 : edgomez 1.55 interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_c;
225 :     interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_c;
226 :     interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_c;
227 :     interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_c;
228 :    
229 : edgomez 1.41 interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;
230 :     interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;
231 :     interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;
232 :    
233 :     interpolate8x8_lowpass_h = interpolate8x8_lowpass_h_c;
234 :     interpolate8x8_lowpass_v = interpolate8x8_lowpass_v_c;
235 :     interpolate8x8_lowpass_hv = interpolate8x8_lowpass_hv_c;
236 :    
237 :     interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_c;
238 :     interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_c;
239 :    
240 :     interpolate8x8_avg2 = interpolate8x8_avg2_c;
241 :     interpolate8x8_avg4 = interpolate8x8_avg4_c;
242 :    
243 : suxen_drol 1.49 /* postprocessing */
244 :     image_brightness = image_brightness_c;
245 :    
246 : edgomez 1.16 /* Initialize internal colorspace transformation tables */
247 : Isibaar 1.1 colorspace_init();
248 :    
249 : edgomez 1.16 /* All colorspace transformation functions User Format->YV12 */
250 : edgomez 1.41 yv12_to_yv12 = yv12_to_yv12_c;
251 :     rgb555_to_yv12 = rgb555_to_yv12_c;
252 :     rgb565_to_yv12 = rgb565_to_yv12_c;
253 :     bgr_to_yv12 = bgr_to_yv12_c;
254 :     bgra_to_yv12 = bgra_to_yv12_c;
255 :     abgr_to_yv12 = abgr_to_yv12_c;
256 :     rgba_to_yv12 = rgba_to_yv12_c;
257 : edgomez 1.48 argb_to_yv12 = argb_to_yv12_c;
258 : edgomez 1.41 yuyv_to_yv12 = yuyv_to_yv12_c;
259 :     uyvy_to_yv12 = uyvy_to_yv12_c;
260 :    
261 :     rgb555i_to_yv12 = rgb555i_to_yv12_c;
262 :     rgb565i_to_yv12 = rgb565i_to_yv12_c;
263 :     bgri_to_yv12 = bgri_to_yv12_c;
264 :     bgrai_to_yv12 = bgrai_to_yv12_c;
265 :     abgri_to_yv12 = abgri_to_yv12_c;
266 :     rgbai_to_yv12 = rgbai_to_yv12_c;
267 : edgomez 1.48 argbi_to_yv12 = argbi_to_yv12_c;
268 : edgomez 1.41 yuyvi_to_yv12 = yuyvi_to_yv12_c;
269 :     uyvyi_to_yv12 = uyvyi_to_yv12_c;
270 :    
271 : edgomez 1.16 /* All colorspace transformation functions YV12->User format */
272 : edgomez 1.41 yv12_to_rgb555 = yv12_to_rgb555_c;
273 :     yv12_to_rgb565 = yv12_to_rgb565_c;
274 :     yv12_to_bgr = yv12_to_bgr_c;
275 :     yv12_to_bgra = yv12_to_bgra_c;
276 :     yv12_to_abgr = yv12_to_abgr_c;
277 :     yv12_to_rgba = yv12_to_rgba_c;
278 : edgomez 1.48 yv12_to_argb = yv12_to_argb_c;
279 : edgomez 1.41 yv12_to_yuyv = yv12_to_yuyv_c;
280 :     yv12_to_uyvy = yv12_to_uyvy_c;
281 : edgomez 1.48
282 : edgomez 1.41 yv12_to_rgb555i = yv12_to_rgb555i_c;
283 :     yv12_to_rgb565i = yv12_to_rgb565i_c;
284 :     yv12_to_bgri = yv12_to_bgri_c;
285 :     yv12_to_bgrai = yv12_to_bgrai_c;
286 :     yv12_to_abgri = yv12_to_abgri_c;
287 :     yv12_to_rgbai = yv12_to_rgbai_c;
288 : edgomez 1.48 yv12_to_argbi = yv12_to_argbi_c;
289 : edgomez 1.41 yv12_to_yuyvi = yv12_to_yuyvi_c;
290 :     yv12_to_uyvyi = yv12_to_uyvyi_c;
291 : Isibaar 1.1
292 : edgomez 1.16 /* Functions used in motion estimation algorithms */
293 : edgomez 1.48 calc_cbp = calc_cbp_c;
294 :     sad16 = sad16_c;
295 :     sad8 = sad8_c;
296 :     sad16bi = sad16bi_c;
297 :     sad8bi = sad8bi_c;
298 :     dev16 = dev16_c;
299 :     sad16v = sad16v_c;
300 :     sse8_16bit = sse8_16bit_c;
301 : edgomez 1.52 sse8_8bit = sse8_8bit_c;
302 : Isibaar 1.1
303 : edgomez 1.41 #if defined(ARCH_IS_IA32)
304 :    
305 :     if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
306 :     (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
307 :     (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))
308 :     {
309 :     /* Restore FPU context : emms_c is a nop functions */
310 :     emms = emms_mmx;
311 :     }
312 :    
313 :     if ((cpu_flags & XVID_CPU_MMX)) {
314 : edgomez 1.16
315 :     /* Forward and Inverse Discrete Cosine Transformation functions */
316 : edgomez 1.48 fdct = fdct_mmx_skal;
317 : Isibaar 1.47 idct = idct_mmx;
318 : Isibaar 1.1
319 : edgomez 1.48 /* Qpel stuff */
320 :     xvid_QP_Funcs = &xvid_QP_Funcs_mmx;
321 :     xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;
322 :    
323 : edgomez 1.16 /* Quantization related functions */
324 : edgomez 1.48 quant_h263_intra = quant_h263_intra_mmx;
325 :     quant_h263_inter = quant_h263_inter_mmx;
326 :     dequant_h263_intra = dequant_h263_intra_mmx;
327 :     dequant_h263_inter = dequant_h263_inter_mmx;
328 :    
329 :     quant_mpeg_intra = quant_mpeg_intra_mmx;
330 :     quant_mpeg_inter = quant_mpeg_inter_mmx;
331 :     dequant_mpeg_intra = dequant_mpeg_intra_mmx;
332 :     dequant_mpeg_inter = dequant_mpeg_inter_mmx;
333 : Isibaar 1.1
334 : edgomez 1.16 /* Block related functions */
335 : Isibaar 1.1 transfer_8to16copy = transfer_8to16copy_mmx;
336 :     transfer_16to8copy = transfer_16to8copy_mmx;
337 : edgomez 1.16 transfer_8to16sub = transfer_8to16sub_mmx;
338 : edgomez 1.41 transfer_8to16subro = transfer_8to16subro_mmx;
339 : edgomez 1.22 transfer_8to16sub2 = transfer_8to16sub2_mmx;
340 : edgomez 1.16 transfer_16to8add = transfer_16to8add_mmx;
341 :     transfer8x8_copy = transfer8x8_copy_mmx;
342 : edgomez 1.22
343 : edgomez 1.41 /* Interlacing Functions */
344 :     MBFieldTest = MBFieldTest_mmx;
345 : edgomez 1.16
346 :     /* Image Interpolation related functions */
347 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_mmx;
348 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_mmx;
349 : Isibaar 1.1 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
350 :    
351 : edgomez 1.55 interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_mmx;
352 :     interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_mmx;
353 :     interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_mmx;
354 :     interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_mmx;
355 :    
356 : edgomez 1.41 interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
357 :     interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
358 :    
359 :     interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
360 :     interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
361 : suxen_drol 1.49
362 :     /* postprocessing */
363 :     image_brightness = image_brightness_mmx;
364 : edgomez 1.41
365 :     /* image input xxx_to_yv12 related functions */
366 :     yv12_to_yv12 = yv12_to_yv12_mmx;
367 :     bgr_to_yv12 = bgr_to_yv12_mmx;
368 :     bgra_to_yv12 = bgra_to_yv12_mmx;
369 : edgomez 1.16 yuyv_to_yv12 = yuyv_to_yv12_mmx;
370 :     uyvy_to_yv12 = uyvy_to_yv12_mmx;
371 : Isibaar 1.1
372 : edgomez 1.41 /* image output yv12_to_xxx related functions */
373 :     yv12_to_bgr = yv12_to_bgr_mmx;
374 :     yv12_to_bgra = yv12_to_bgra_mmx;
375 : edgomez 1.16 yv12_to_yuyv = yv12_to_yuyv_mmx;
376 :     yv12_to_uyvy = yv12_to_uyvy_mmx;
377 : edgomez 1.48
378 : edgomez 1.41 yv12_to_yuyvi = yv12_to_yuyvi_mmx;
379 :     yv12_to_uyvyi = yv12_to_uyvyi_mmx;
380 : Isibaar 1.1
381 : edgomez 1.16 /* Motion estimation related functions */
382 : edgomez 1.52 calc_cbp = calc_cbp_mmx;
383 :     sad16 = sad16_mmx;
384 :     sad8 = sad8_mmx;
385 :     sad16bi = sad16bi_mmx;
386 :     sad8bi = sad8bi_mmx;
387 :     dev16 = dev16_mmx;
388 :     sad16v = sad16v_mmx;
389 : edgomez 1.48 sse8_16bit = sse8_16bit_mmx;
390 : edgomez 1.52 sse8_8bit = sse8_8bit_mmx;
391 : Isibaar 1.1 }
392 :    
393 : suxen_drol 1.33 /* these 3dnow functions are faster than mmx, but slower than xmm. */
394 : edgomez 1.41 if ((cpu_flags & XVID_CPU_3DNOW)) {
395 :    
396 :     emms = emms_3dn;
397 : suxen_drol 1.33
398 :     /* ME functions */
399 :     sad16bi = sad16bi_3dn;
400 :     sad8bi = sad8bi_3dn;
401 : edgomez 1.41
402 :     yuyv_to_yv12 = yuyv_to_yv12_3dn;
403 :     uyvy_to_yv12 = uyvy_to_yv12_3dn;
404 : suxen_drol 1.33 }
405 :    
406 :    
407 : edgomez 1.41 if ((cpu_flags & XVID_CPU_MMXEXT)) {
408 : edgomez 1.16
409 : edgomez 1.48 /* DCT */
410 :     fdct = fdct_xmm_skal;
411 : Isibaar 1.47 idct = idct_xmm;
412 : edgomez 1.16
413 :     /* Interpolation */
414 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_xmm;
415 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_xmm;
416 : h 1.3 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
417 : edgomez 1.55
418 :     interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_xmm;
419 :     interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_xmm;
420 :     interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_xmm;
421 :     interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_xmm;
422 : Isibaar 1.25
423 : chenm001 1.29 /* Quantization */
424 : edgomez 1.48 quant_mpeg_intra = quant_mpeg_intra_xmm;
425 :     quant_mpeg_inter = quant_mpeg_inter_xmm;
426 : edgomez 1.41
427 : edgomez 1.48 dequant_h263_intra = dequant_h263_intra_xmm;
428 :     dequant_h263_inter = dequant_h263_inter_xmm;
429 : chenm001 1.29
430 : edgomez 1.19 /* Buffer transfer */
431 :     transfer_8to16sub2 = transfer_8to16sub2_xmm;
432 : edgomez 1.16
433 :     /* Colorspace transformation */
434 : edgomez 1.41 yv12_to_yv12 = yv12_to_yv12_xmm;
435 :     yuyv_to_yv12 = yuyv_to_yv12_xmm;
436 :     uyvy_to_yv12 = uyvy_to_yv12_xmm;
437 : Isibaar 1.1
438 : edgomez 1.16 /* ME functions */
439 : Isibaar 1.1 sad16 = sad16_xmm;
440 : suxen_drol 1.33 sad8 = sad8_xmm;
441 : chenm001 1.29 sad16bi = sad16bi_xmm;
442 : suxen_drol 1.33 sad8bi = sad8bi_xmm;
443 : Isibaar 1.1 dev16 = dev16_xmm;
444 : edgomez 1.41 sad16v = sad16v_xmm;
445 : Isibaar 1.1 }
446 :    
447 : edgomez 1.41 if ((cpu_flags & XVID_CPU_3DNOW)) {
448 : edgomez 1.16
449 :     /* Interpolation */
450 : Isibaar 1.1 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
451 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dn;
452 : h 1.4 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
453 : Isibaar 1.1 }
454 :    
455 : edgomez 1.41 if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
456 :    
457 :     /* Buffer transfer */
458 :     transfer_8to16copy = transfer_8to16copy_3dne;
459 :     transfer_16to8copy = transfer_16to8copy_3dne;
460 :     transfer_8to16sub = transfer_8to16sub_3dne;
461 :     transfer_8to16subro = transfer_8to16subro_3dne;
462 :     transfer_16to8add = transfer_16to8add_3dne;
463 :     transfer8x8_copy = transfer8x8_copy_3dne;
464 :    
465 : edgomez 1.51 if ((cpu_flags & XVID_CPU_MMXEXT)) {
466 :     /* Inverse DCT */
467 :     idct = idct_3dne;
468 :    
469 :     /* Buffer transfer */
470 :     transfer_8to16sub2 = transfer_8to16sub2_3dne;
471 :    
472 :     /* Interpolation */
473 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
474 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
475 :     interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
476 :    
477 :     /* Quantization */
478 :     quant_h263_intra = quant_h263_intra_3dne; /* cmov only */
479 :     quant_h263_inter = quant_h263_inter_3dne;
480 :     dequant_mpeg_intra = dequant_mpeg_intra_3dne; /* cmov only */
481 :     dequant_mpeg_inter = dequant_mpeg_inter_3dne;
482 :     dequant_h263_intra = dequant_h263_intra_3dne;
483 :     dequant_h263_inter = dequant_h263_inter_3dne;
484 :    
485 :     /* ME functions */
486 :     calc_cbp = calc_cbp_3dne;
487 :    
488 :     sad16 = sad16_3dne;
489 :     sad8 = sad8_3dne;
490 :     sad16bi = sad16bi_3dne;
491 :     sad8bi = sad8bi_3dne;
492 :     dev16 = dev16_3dne;
493 :     }
494 : edgomez 1.41 }
495 :    
496 :     if ((cpu_flags & XVID_CPU_SSE2)) {
497 : edgomez 1.16
498 : chenm001 1.29 calc_cbp = calc_cbp_sse2;
499 :    
500 : edgomez 1.16 /* Quantization */
501 : edgomez 1.48 quant_h263_intra = quant_h263_intra_sse2;
502 :     quant_h263_inter = quant_h263_inter_sse2;
503 :     dequant_h263_intra = dequant_h263_intra_sse2;
504 :     dequant_h263_inter = dequant_h263_inter_sse2;
505 : h 1.13
506 : edgomez 1.48 /* SAD operators */
507 : edgomez 1.16 sad16 = sad16_sse2;
508 :     dev16 = dev16_sse2;
509 : edgomez 1.48
510 :     /* DCT operators
511 :     * no iDCT because it's not "Walken matching" */
512 :     fdct = fdct_sse2_skal;
513 : suxen_drol 1.54
514 :     /* postprocessing */
515 :     image_brightness = image_brightness_sse2;
516 : h 1.12 }
517 : edgomez 1.48 #endif /* ARCH_IS_IA32 */
518 : Isibaar 1.18
519 : edgomez 1.41 #if defined(ARCH_IS_IA64)
520 : edgomez 1.43 if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
521 : Isibaar 1.18 idct_ia64_init();
522 :     fdct = fdct_ia64;
523 : edgomez 1.43 idct = idct_ia64; /*not yet working, crashes */
524 : Isibaar 1.18 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
525 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
526 :     interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
527 :     sad16 = sad16_ia64;
528 :     sad16bi = sad16bi_ia64;
529 :     sad8 = sad8_ia64;
530 :     dev16 = dev16_ia64;
531 : edgomez 1.43 /* Halfpel8_Refine = Halfpel8_Refine_ia64; */
532 : edgomez 1.48 quant_h263_intra = quant_h263_intra_ia64;
533 :     quant_h263_inter = quant_h263_inter_ia64;
534 :     dequant_h263_intra = dequant_h263_intra_ia64;
535 :     dequant_h263_inter = dequant_h263_inter_ia64;
536 : Isibaar 1.18 transfer_8to16copy = transfer_8to16copy_ia64;
537 :     transfer_16to8copy = transfer_16to8copy_ia64;
538 :     transfer_8to16sub = transfer_8to16sub_ia64;
539 :     transfer_8to16sub2 = transfer_8to16sub2_ia64;
540 :     transfer_16to8add = transfer_16to8add_ia64;
541 :     transfer8x8_copy = transfer8x8_copy_ia64;
542 :     }
543 : edgomez 1.48 #endif
544 : edgomez 1.16
545 : edgomez 1.41 #if defined(ARCH_IS_PPC)
546 : edgomez 1.50 if ((cpu_flags & XVID_CPU_ALTIVEC)) {
547 :     /* sad operators */
548 : edgomez 1.56 sad16 = sad16_altivec_c;
549 :     sad16bi = sad16bi_altivec_c;
550 :     sad8 = sad8_altivec_c;
551 :     dev16 = dev16_altivec_c;
552 : edgomez 1.50
553 :     sse8_16bit = sse8_16bit_altivec_c;
554 :    
555 :     /* mem transfer */
556 :     transfer_8to16copy = transfer_8to16copy_altivec_c;
557 :     transfer_16to8copy = transfer_16to8copy_altivec_c;
558 :     transfer_8to16sub = transfer_8to16sub_altivec_c;
559 :     transfer_8to16subro = transfer_8to16subro_altivec_c;
560 :     transfer_8to16sub2 = transfer_8to16sub2_altivec_c;
561 :     transfer_16to8add = transfer_16to8add_altivec_c;
562 :     transfer8x8_copy = transfer8x8_copy_altivec_c;
563 :    
564 :     /* Inverse DCT */
565 :     idct = idct_altivec_c;
566 :    
567 :     /* Interpolation */
568 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_altivec_c;
569 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_altivec_c;
570 :     interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_altivec_c;
571 : edgomez 1.58
572 : edgomez 1.50 interpolate8x8_avg2 = interpolate8x8_avg2_altivec_c;
573 :     interpolate8x8_avg4 = interpolate8x8_avg4_altivec_c;
574 : edgomez 1.56
575 :     interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_altivec_c;
576 :     interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_altivec_c;
577 :     interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_altivec_c;
578 :     interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_altivec_c;
579 : edgomez 1.50
580 :     /* Colorspace conversion */
581 :     bgra_to_yv12 = bgra_to_yv12_altivec_c;
582 :     abgr_to_yv12 = abgr_to_yv12_altivec_c;
583 :     rgba_to_yv12 = rgba_to_yv12_altivec_c;
584 :     argb_to_yv12 = argb_to_yv12_altivec_c;
585 :    
586 :     yuyv_to_yv12 = yuyv_to_yv12_altivec_c;
587 :     uyvy_to_yv12 = uyvy_to_yv12_altivec_c;
588 :    
589 :     yv12_to_yuyv = yv12_to_yuyv_altivec_c;
590 :     yv12_to_uyvy = yv12_to_uyvy_altivec_c;
591 :    
592 :     /* Quantization */
593 :     quant_h263_intra = quant_h263_intra_altivec_c;
594 :     quant_h263_inter = quant_h263_inter_altivec_c;
595 :     dequant_h263_intra = dequant_h263_intra_altivec_c;
596 :     dequant_h263_inter = dequant_h263_inter_altivec_c;
597 : edgomez 1.56
598 :     /* Qpel stuff */
599 :     xvid_QP_Funcs = &xvid_QP_Funcs_Altivec_C;
600 :     xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_Altivec_C;
601 : edgomez 1.50 }
602 : canard 1.6 #endif
603 : edgomez 1.41
604 : edgomez 1.48 #if defined(_DEBUG)
605 :     xvid_debug = init->debug;
606 :     #endif
607 :    
608 : edgomez 1.50 return(0);
609 : edgomez 1.41 }
610 :    
611 :    
612 :     static int
613 : edgomez 1.48 xvid_gbl_info(xvid_gbl_info_t * info)
614 : edgomez 1.41 {
615 : edgomez 1.48 if (XVID_VERSION_MAJOR(info->version) != 1) /* v1.x.x */
616 :     return XVID_ERR_VERSION;
617 : edgomez 1.41
618 : edgomez 1.48 info->actual_version = XVID_VERSION;
619 : suxen_drol 1.53 info->build = "xvid-1.1-cvshead";
620 : edgomez 1.48 info->cpu_flags = detect_cpu_flags();
621 : edgomez 1.41
622 : edgomez 1.48 #if defined(_SMP) && defined(WIN32)
623 :     info->num_threads = pthread_num_processors_np();;
624 :     #else
625 :     info->num_threads = 0;
626 :     #endif
627 : edgomez 1.41
628 :     return 0;
629 :     }
630 :    
631 :    
632 : edgomez 1.48 static int
633 :     xvid_gbl_convert(xvid_gbl_convert_t* convert)
634 : edgomez 1.41 {
635 : edgomez 1.48 int width;
636 :     int height;
637 :     int width2;
638 :     int height2;
639 :     IMAGE img;
640 : edgomez 1.41
641 : edgomez 1.48 if (XVID_VERSION_MAJOR(convert->version) != 1) /* v1.x.x */
642 :     return XVID_ERR_VERSION;
643 : edgomez 1.41
644 : edgomez 1.48 #if 0
645 :     const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
646 :     #endif
647 :     width = convert->width;
648 :     height = convert->height;
649 :     width2 = convert->width/2;
650 :     height2 = convert->height/2;
651 : edgomez 1.41
652 : edgomez 1.48 switch (convert->input.csp & ~XVID_CSP_VFLIP)
653 : edgomez 1.41 {
654 : edgomez 1.48 case XVID_CSP_YV12 :
655 :     img.y = convert->input.plane[0];
656 :     img.v = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height;
657 :     img.u = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height + (convert->input.stride[0]/2)*height2;
658 :     image_output(&img, width, height, width,
659 :     (uint8_t**)convert->output.plane, convert->output.stride,
660 :     convert->output.csp, convert->interlacing);
661 :     break;
662 : edgomez 1.41
663 : edgomez 1.48 default :
664 :     return XVID_ERR_FORMAT;
665 : edgomez 1.41 }
666 :    
667 :    
668 : edgomez 1.48 emms();
669 : edgomez 1.41 return 0;
670 :     }
671 :    
672 : edgomez 1.48 /*****************************************************************************
673 :     * XviD Global Entry point
674 :     *
675 :     * Well this function initialize all internal function pointers according
676 :     * to the CPU features forced by the library client or autodetected (depending
677 :     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
678 :     * image colorspace transformation tables.
679 :     *
680 :     ****************************************************************************/
681 : Isibaar 1.1
682 : edgomez 1.41
683 :     int
684 : edgomez 1.48 xvid_global(void *handle,
685 : edgomez 1.41 int opt,
686 :     void *param1,
687 :     void *param2)
688 :     {
689 :     switch(opt)
690 :     {
691 : edgomez 1.48 case XVID_GBL_INIT :
692 :     return xvid_gbl_init((xvid_gbl_init_t*)param1);
693 : edgomez 1.41
694 : edgomez 1.48 case XVID_GBL_INFO :
695 :     return xvid_gbl_info((xvid_gbl_info_t*)param1);
696 :    
697 :     case XVID_GBL_CONVERT :
698 :     return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
699 : edgomez 1.41
700 :     default :
701 :     return XVID_ERR_FAIL;
702 :     }
703 :     }
704 :    
705 : edgomez 1.16 /*****************************************************************************
706 :     * XviD Native decoder entry point
707 :     *
708 :     * This function is just a wrapper to all the option cases.
709 :     *
710 :     * Returned values : XVID_ERR_FAIL when opt is invalid
711 :     * else returns the wrapped function result
712 :     *
713 :     ****************************************************************************/
714 :    
715 : edgomez 1.15 int
716 :     xvid_decore(void *handle,
717 :     int opt,
718 :     void *param1,
719 :     void *param2)
720 : Isibaar 1.1 {
721 : edgomez 1.15 switch (opt) {
722 :     case XVID_DEC_CREATE:
723 : edgomez 1.48 return decoder_create((xvid_dec_create_t *) param1);
724 : edgomez 1.15
725 :     case XVID_DEC_DESTROY:
726 :     return decoder_destroy((DECODER *) handle);
727 : Isibaar 1.1
728 : edgomez 1.48 case XVID_DEC_DECODE:
729 :     return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
730 :    
731 : Isibaar 1.1 default:
732 : edgomez 1.15 return XVID_ERR_FAIL;
733 :     }
734 : Isibaar 1.1 }
735 :    
736 : edgomez 1.16
737 :     /*****************************************************************************
738 :     * XviD Native encoder entry point
739 :     *
740 :     * This function is just a wrapper to all the option cases.
741 :     *
742 :     * Returned values : XVID_ERR_FAIL when opt is invalid
743 :     * else returns the wrapped function result
744 :     *
745 :     ****************************************************************************/
746 : Isibaar 1.1
747 : edgomez 1.15 int
748 :     xvid_encore(void *handle,
749 :     int opt,
750 :     void *param1,
751 :     void *param2)
752 : Isibaar 1.1 {
753 : edgomez 1.15 switch (opt) {
754 :     case XVID_ENC_ENCODE:
755 : edgomez 1.41
756 : edgomez 1.48 return enc_encode((Encoder *) handle,
757 :     (xvid_enc_frame_t *) param1,
758 :     (xvid_enc_stats_t *) param2);
759 : edgomez 1.15
760 :     case XVID_ENC_CREATE:
761 : edgomez 1.48 return enc_create((xvid_enc_create_t *) param1);
762 : edgomez 1.15
763 :     case XVID_ENC_DESTROY:
764 : edgomez 1.48 return enc_destroy((Encoder *) handle);
765 : Isibaar 1.1
766 :     default:
767 : edgomez 1.15 return XVID_ERR_FAIL;
768 :     }
769 : Isibaar 1.1 }

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4