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

Annotation of /xvidcore/src/xvid.c

Parent Directory Parent Directory | Revision Log Revision Log


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

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