[svn] / branches / dev-api-4 / xvidcore / src / xvid.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/src/xvid.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1054 - (view) (download)

1 : edgomez 200 /*****************************************************************************
2 : edgomez 201 *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Native API implementation -
5 :     *
6 : edgomez 1054 * Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7 :     *
8 : edgomez 851 * 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 201 * (at your option) any later version.
12 :     *
13 :     * This program is distributed in the hope that it will be useful,
14 : edgomez 851 * but WITHOUT ANY WARRANTY ; without even the implied warranty of
15 : edgomez 201 * 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 851 * along with this program ; if not, write to the Free Software
20 : edgomez 201 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 :     *
22 : edgomez 1054 * $Id: xvid.c,v 1.45.2.6 2003-06-09 13:51:17 edgomez Exp $
23 : edgomez 410 *
24 : edgomez 201 ****************************************************************************/
25 : chenm001 274
26 : edgomez 851 #include <stdio.h>
27 :     #include <stdlib.h>
28 :     #include <string.h>
29 :     #include <time.h>
30 :    
31 : Isibaar 3 #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 851 #include "image/reduced.h"
40 : Isibaar 3 #include "utils/mem_transfer.h"
41 : edgomez 851 #include "utils/mbfunctions.h"
42 : Isibaar 3 #include "quant/quant_h263.h"
43 :     #include "quant/quant_mpeg4.h"
44 : ia64p 299 #include "motion/motion.h"
45 : Isibaar 3 #include "motion/sad.h"
46 :     #include "utils/emms.h"
47 :     #include "utils/timer.h"
48 : Isibaar 100 #include "bitstream/mbcoding.h"
49 : Isibaar 3
50 : suxen_drol 1031 #if defined(_DEBUG)
51 :     unsigned int xvid_debug = 0; /* xvid debug mask */
52 :     #endif
53 :    
54 : edgomez 851 #if defined(ARCH_IS_IA32)
55 : suxen_drol 311
56 : edgomez 851 #if defined(_MSC_VER)
57 :     # include <windows.h>
58 : suxen_drol 311 #else
59 : edgomez 851 # include <signal.h>
60 :     # include <setjmp.h>
61 : suxen_drol 311
62 : edgomez 851 static jmp_buf mark;
63 : suxen_drol 311
64 : edgomez 851 static void
65 :     sigill_handler(int signal)
66 :     {
67 :     longjmp(mark, 1);
68 :     }
69 : suxen_drol 311 #endif
70 :    
71 :    
72 :     /*
73 : edgomez 874 * Calls the funcptr, and returns whether SIGILL (illegal instruction) was
74 :     * signalled
75 :     *
76 :     * Return values:
77 :     * -1 : could not determine
78 :     * 0 : SIGILL was *not* signalled
79 :     * 1 : SIGILL was signalled
80 :     */
81 : suxen_drol 311
82 :     int
83 :     sigill_check(void (*func)())
84 :     {
85 : edgomez 851 #if defined(_MSC_VER)
86 : suxen_drol 311 _try {
87 :     func();
88 :     }
89 :     _except(EXCEPTION_EXECUTE_HANDLER) {
90 :    
91 :     if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)
92 :     return 1;
93 :     }
94 :     return 0;
95 :     #else
96 :     void * old_handler;
97 :     int jmpret;
98 :    
99 :    
100 :     old_handler = signal(SIGILL, sigill_handler);
101 :     if (old_handler == SIG_ERR)
102 :     {
103 :     return -1;
104 :     }
105 :    
106 :     jmpret = setjmp(mark);
107 :     if (jmpret == 0)
108 :     {
109 :     func();
110 :     }
111 :    
112 :     signal(SIGILL, old_handler);
113 :    
114 :     return jmpret;
115 :     #endif
116 :     }
117 :     #endif
118 :    
119 : edgomez 851
120 :     /* detect cpu flags */
121 :     static unsigned int
122 :     detect_cpu_flags()
123 :     {
124 :     /* enable native assembly optimizations by default */
125 :     unsigned int cpu_flags = XVID_CPU_ASM;
126 :    
127 :     #if defined(ARCH_IS_IA32)
128 :     cpu_flags |= check_cpu_features();
129 :     if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
130 :     cpu_flags &= ~XVID_CPU_SSE;
131 :    
132 :     if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))
133 :     cpu_flags &= ~XVID_CPU_SSE2;
134 :     #endif
135 :    
136 :     #if defined(ARCH_IS_PPC)
137 :     #if defined(ARCH_IS_PPC_ALTIVEC)
138 :     cpu_flags |= XVID_CPU_ALTIVEC;
139 :     #endif
140 :     #endif
141 :    
142 :     return cpu_flags;
143 :     }
144 :    
145 :    
146 : edgomez 200 /*****************************************************************************
147 :     * XviD Init Entry point
148 :     *
149 :     * Well this function initialize all internal function pointers according
150 :     * to the CPU features forced by the library client or autodetected (depending
151 :     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
152 :     * image colorspace transformation tables.
153 :     *
154 :     * Returned value : XVID_ERR_OK
155 :     * + API_VERSION in the input XVID_INIT_PARAM structure
156 :     * + core build " " " " "
157 :     *
158 :     ****************************************************************************/
159 :    
160 : edgomez 851
161 :     static
162 : suxen_drol 890 int xvid_gbl_init(xvid_gbl_init_t * init)
163 : Isibaar 3 {
164 : suxen_drol 890 unsigned int cpu_flags;
165 : Isibaar 3
166 : suxen_drol 890 if (XVID_MAJOR(init->version) != 1) /* v1.x.x */
167 :     return XVID_ERR_VERSION;
168 : suxen_drol 234
169 : suxen_drol 890 cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
170 : suxen_drol 234
171 : edgomez 200 /* Initialize the function pointers */
172 : Isibaar 3 idct_int32_init();
173 : Isibaar 100 init_vlc_tables();
174 :    
175 : edgomez 200 /* Fixed Point Forward/Inverse DCT transformations */
176 : Isibaar 3 fdct = fdct_int32;
177 :     idct = idct_int32;
178 :    
179 : edgomez 200 /* Only needed on PPC Altivec archs */
180 : canard 115 sadInit = 0;
181 : edgomez 195
182 : edgomez 200 /* Restore FPU context : emms_c is a nop functions */
183 : Isibaar 3 emms = emms_c;
184 :    
185 : edgomez 200 /* Quantization functions */
186 :     quant_intra = quant_intra_c;
187 : Isibaar 3 dequant_intra = dequant_intra_c;
188 : edgomez 200 quant_inter = quant_inter_c;
189 : Isibaar 3 dequant_inter = dequant_inter_c;
190 :    
191 : edgomez 200 quant4_intra = quant4_intra_c;
192 : Isibaar 3 dequant4_intra = dequant4_intra_c;
193 : edgomez 200 quant4_inter = quant4_inter_c;
194 : Isibaar 3 dequant4_inter = dequant4_inter_c;
195 :    
196 : edgomez 200 /* Block transfer related functions */
197 : Isibaar 3 transfer_8to16copy = transfer_8to16copy_c;
198 :     transfer_16to8copy = transfer_16to8copy_c;
199 : edgomez 200 transfer_8to16sub = transfer_8to16sub_c;
200 : edgomez 851 transfer_8to16subro = transfer_8to16subro_c;
201 : suxen_drol 118 transfer_8to16sub2 = transfer_8to16sub2_c;
202 : edgomez 200 transfer_16to8add = transfer_16to8add_c;
203 :     transfer8x8_copy = transfer8x8_copy_c;
204 : Isibaar 3
205 : edgomez 851 /* Interlacing functions */
206 :     MBFieldTest = MBFieldTest_c;
207 :    
208 : edgomez 200 /* Image interpolation related functions */
209 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_c;
210 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_c;
211 : Isibaar 3 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
212 :    
213 : edgomez 851 interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;
214 :     interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;
215 :     interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;
216 :    
217 :     interpolate8x8_lowpass_h = interpolate8x8_lowpass_h_c;
218 :     interpolate8x8_lowpass_v = interpolate8x8_lowpass_v_c;
219 :     interpolate8x8_lowpass_hv = interpolate8x8_lowpass_hv_c;
220 :    
221 :     interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_c;
222 :     interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_c;
223 :    
224 :     interpolate8x8_avg2 = interpolate8x8_avg2_c;
225 :     interpolate8x8_avg4 = interpolate8x8_avg4_c;
226 :    
227 :     /* reduced resoltuion */
228 :     copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
229 :     add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
230 :     vfilter_31 = xvid_VFilter_31_C;
231 :     hfilter_31 = xvid_HFilter_31_C;
232 :     filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;
233 :     filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;
234 :    
235 : edgomez 200 /* Initialize internal colorspace transformation tables */
236 : Isibaar 3 colorspace_init();
237 :    
238 : edgomez 200 /* All colorspace transformation functions User Format->YV12 */
239 : edgomez 851 yv12_to_yv12 = yv12_to_yv12_c;
240 :     rgb555_to_yv12 = rgb555_to_yv12_c;
241 :     rgb565_to_yv12 = rgb565_to_yv12_c;
242 :     bgr_to_yv12 = bgr_to_yv12_c;
243 :     bgra_to_yv12 = bgra_to_yv12_c;
244 :     abgr_to_yv12 = abgr_to_yv12_c;
245 :     rgba_to_yv12 = rgba_to_yv12_c;
246 :     yuyv_to_yv12 = yuyv_to_yv12_c;
247 :     uyvy_to_yv12 = uyvy_to_yv12_c;
248 : Isibaar 3
249 : edgomez 851 rgb555i_to_yv12 = rgb555i_to_yv12_c;
250 :     rgb565i_to_yv12 = rgb565i_to_yv12_c;
251 :     bgri_to_yv12 = bgri_to_yv12_c;
252 :     bgrai_to_yv12 = bgrai_to_yv12_c;
253 :     abgri_to_yv12 = abgri_to_yv12_c;
254 :     rgbai_to_yv12 = rgbai_to_yv12_c;
255 :     yuyvi_to_yv12 = yuyvi_to_yv12_c;
256 :     uyvyi_to_yv12 = uyvyi_to_yv12_c;
257 :    
258 :    
259 : edgomez 200 /* All colorspace transformation functions YV12->User format */
260 : edgomez 851 yv12_to_rgb555 = yv12_to_rgb555_c;
261 :     yv12_to_rgb565 = yv12_to_rgb565_c;
262 :     yv12_to_bgr = yv12_to_bgr_c;
263 :     yv12_to_bgra = yv12_to_bgra_c;
264 :     yv12_to_abgr = yv12_to_abgr_c;
265 :     yv12_to_rgba = yv12_to_rgba_c;
266 :     yv12_to_yuyv = yv12_to_yuyv_c;
267 :     yv12_to_uyvy = yv12_to_uyvy_c;
268 :    
269 :     yv12_to_rgb555i = yv12_to_rgb555i_c;
270 :     yv12_to_rgb565i = yv12_to_rgb565i_c;
271 :     yv12_to_bgri = yv12_to_bgri_c;
272 :     yv12_to_bgrai = yv12_to_bgrai_c;
273 :     yv12_to_abgri = yv12_to_abgri_c;
274 :     yv12_to_rgbai = yv12_to_rgbai_c;
275 :     yv12_to_yuyvi = yv12_to_yuyvi_c;
276 :     yv12_to_uyvyi = yv12_to_uyvyi_c;
277 : Isibaar 3
278 : edgomez 200 /* Functions used in motion estimation algorithms */
279 : Isibaar 3 calc_cbp = calc_cbp_c;
280 : edgomez 200 sad16 = sad16_c;
281 : suxen_drol 329 sad8 = sad8_c;
282 : edgomez 200 sad16bi = sad16bi_c;
283 : suxen_drol 329 sad8bi = sad8bi_c;
284 : edgomez 200 dev16 = dev16_c;
285 : edgomez 851 sad16v = sad16v_c;
286 : suxen_drol 329
287 : edgomez 874 /* Halfpel8_Refine = Halfpel8_Refine_c; */
288 : Isibaar 3
289 : edgomez 851 #if defined(ARCH_IS_IA32)
290 : edgomez 200
291 : edgomez 851 if ((cpu_flags & XVID_CPU_ASM))
292 :     {
293 :     vfilter_31 = xvid_VFilter_31_x86;
294 :     hfilter_31 = xvid_HFilter_31_x86;
295 :     }
296 :    
297 :     if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
298 :     (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
299 :     (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))
300 :     {
301 :     /* Restore FPU context : emms_c is a nop functions */
302 :     emms = emms_mmx;
303 :     }
304 :    
305 :     if ((cpu_flags & XVID_CPU_MMX)) {
306 :    
307 : edgomez 200 /* Forward and Inverse Discrete Cosine Transformation functions */
308 : Isibaar 3 fdct = fdct_mmx;
309 :     idct = idct_mmx;
310 :    
311 : edgomez 200 /* Quantization related functions */
312 :     quant_intra = quant_intra_mmx;
313 : Isibaar 3 dequant_intra = dequant_intra_mmx;
314 : edgomez 200 quant_inter = quant_inter_mmx;
315 : Isibaar 3 dequant_inter = dequant_inter_mmx;
316 :    
317 : edgomez 200 quant4_intra = quant4_intra_mmx;
318 : Isibaar 3 dequant4_intra = dequant4_intra_mmx;
319 : edgomez 200 quant4_inter = quant4_inter_mmx;
320 : Isibaar 3 dequant4_inter = dequant4_inter_mmx;
321 :    
322 : edgomez 200 /* Block related functions */
323 : Isibaar 3 transfer_8to16copy = transfer_8to16copy_mmx;
324 :     transfer_16to8copy = transfer_16to8copy_mmx;
325 : edgomez 200 transfer_8to16sub = transfer_8to16sub_mmx;
326 : edgomez 851 transfer_8to16subro = transfer_8to16subro_mmx;
327 : edgomez 236 transfer_8to16sub2 = transfer_8to16sub2_mmx;
328 : edgomez 200 transfer_16to8add = transfer_16to8add_mmx;
329 :     transfer8x8_copy = transfer8x8_copy_mmx;
330 : Isibaar 3
331 : edgomez 851 /* Interlacing Functions */
332 :     MBFieldTest = MBFieldTest_mmx;
333 : edgomez 236
334 : edgomez 200 /* Image Interpolation related functions */
335 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_mmx;
336 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_mmx;
337 : Isibaar 3 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
338 :    
339 : edgomez 851 interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
340 :     interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
341 :    
342 :     interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
343 :     interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
344 :    
345 :     /* reduced resolution */
346 :     copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
347 :     add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
348 :     hfilter_31 = xvid_HFilter_31_mmx;
349 :     filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_mmx;
350 :     filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_mmx;
351 :    
352 :     /* image input xxx_to_yv12 related functions */
353 :     yv12_to_yv12 = yv12_to_yv12_mmx;
354 :     bgr_to_yv12 = bgr_to_yv12_mmx;
355 :     bgra_to_yv12 = bgra_to_yv12_mmx;
356 : edgomez 200 yuyv_to_yv12 = yuyv_to_yv12_mmx;
357 :     uyvy_to_yv12 = uyvy_to_yv12_mmx;
358 : Isibaar 3
359 : edgomez 851 /* image output yv12_to_xxx related functions */
360 :     yv12_to_bgr = yv12_to_bgr_mmx;
361 :     yv12_to_bgra = yv12_to_bgra_mmx;
362 : edgomez 200 yv12_to_yuyv = yv12_to_yuyv_mmx;
363 :     yv12_to_uyvy = yv12_to_uyvy_mmx;
364 : edgomez 851
365 :     yv12_to_yuyvi = yv12_to_yuyvi_mmx;
366 :     yv12_to_uyvyi = yv12_to_uyvyi_mmx;
367 : Isibaar 3
368 : edgomez 200 /* Motion estimation related functions */
369 : Isibaar 3 calc_cbp = calc_cbp_mmx;
370 : edgomez 200 sad16 = sad16_mmx;
371 :     sad8 = sad8_mmx;
372 : suxen_drol 329 sad16bi = sad16bi_mmx;
373 :     sad8bi = sad8bi_mmx;
374 : edgomez 200 dev16 = dev16_mmx;
375 : edgomez 851 sad16v = sad16v_mmx;
376 : Isibaar 3 }
377 :    
378 : suxen_drol 329 /* these 3dnow functions are faster than mmx, but slower than xmm. */
379 : edgomez 851 if ((cpu_flags & XVID_CPU_3DNOW)) {
380 : suxen_drol 329
381 : edgomez 851 emms = emms_3dn;
382 :    
383 : suxen_drol 329 /* ME functions */
384 :     sad16bi = sad16bi_3dn;
385 :     sad8bi = sad8bi_3dn;
386 : edgomez 851
387 :     yuyv_to_yv12 = yuyv_to_yv12_3dn;
388 :     uyvy_to_yv12 = uyvy_to_yv12_3dn;
389 : suxen_drol 329 }
390 :    
391 :    
392 : edgomez 851 if ((cpu_flags & XVID_CPU_MMXEXT)) {
393 : edgomez 200
394 :     /* Inverse DCT */
395 : Isibaar 3 idct = idct_xmm;
396 : edgomez 200
397 :     /* Interpolation */
398 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_xmm;
399 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_xmm;
400 : h 38 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
401 : edgomez 200
402 : edgomez 851 /* reduced resolution */
403 :     copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_xmm;
404 :     add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
405 :    
406 : chenm001 274 /* Quantization */
407 : edgomez 851 quant4_intra = quant4_intra_xmm;
408 :     quant4_inter = quant4_inter_xmm;
409 :    
410 : chenm001 274 dequant_intra = dequant_intra_xmm;
411 :     dequant_inter = dequant_inter_xmm;
412 :    
413 : edgomez 218 /* Buffer transfer */
414 :     transfer_8to16sub2 = transfer_8to16sub2_xmm;
415 :    
416 : edgomez 200 /* Colorspace transformation */
417 : edgomez 851 yv12_to_yv12 = yv12_to_yv12_xmm;
418 :     yuyv_to_yv12 = yuyv_to_yv12_xmm;
419 :     uyvy_to_yv12 = uyvy_to_yv12_xmm;
420 : Isibaar 3
421 : edgomez 200 /* ME functions */
422 : Isibaar 3 sad16 = sad16_xmm;
423 : suxen_drol 329 sad8 = sad8_xmm;
424 : chenm001 274 sad16bi = sad16bi_xmm;
425 : suxen_drol 329 sad8bi = sad8bi_xmm;
426 : Isibaar 3 dev16 = dev16_xmm;
427 : edgomez 851 sad16v = sad16v_xmm;
428 : Isibaar 3 }
429 :    
430 : edgomez 851 if ((cpu_flags & XVID_CPU_3DNOW)) {
431 : edgomez 200
432 :     /* Interpolation */
433 : Isibaar 3 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
434 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dn;
435 : h 40 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
436 : Isibaar 3 }
437 :    
438 : edgomez 851 if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
439 : edgomez 200
440 : edgomez 851 /* Inverse DCT */
441 :     idct = idct_3dne;
442 :    
443 :     /* Buffer transfer */
444 :     transfer_8to16copy = transfer_8to16copy_3dne;
445 :     transfer_16to8copy = transfer_16to8copy_3dne;
446 :     transfer_8to16sub = transfer_8to16sub_3dne;
447 :     transfer_8to16subro = transfer_8to16subro_3dne;
448 :     transfer_8to16sub2 = transfer_8to16sub2_3dne;
449 :     transfer_16to8add = transfer_16to8add_3dne;
450 :     transfer8x8_copy = transfer8x8_copy_3dne;
451 :    
452 :     /* Quantization */
453 :     dequant4_intra = dequant4_intra_3dne;
454 :     dequant4_inter = dequant4_inter_3dne;
455 :     quant_intra = quant_intra_3dne;
456 :     quant_inter = quant_inter_3dne;
457 :     dequant_intra = dequant_intra_3dne;
458 :     dequant_inter = dequant_inter_3dne;
459 :    
460 :     /* ME functions */
461 :     calc_cbp = calc_cbp_3dne;
462 :     sad16 = sad16_3dne;
463 :     sad8 = sad8_3dne;
464 :     sad16bi = sad16bi_3dne;
465 :     sad8bi = sad8bi_3dne;
466 :     dev16 = dev16_3dne;
467 :    
468 :     /* Interpolation */
469 :     interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
470 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
471 :     interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
472 :     }
473 :    
474 :    
475 :     if ((cpu_flags & XVID_CPU_SSE2)) {
476 :    
477 : chenm001 274 calc_cbp = calc_cbp_sse2;
478 :    
479 : edgomez 200 /* Quantization */
480 :     quant_intra = quant_intra_sse2;
481 : Isibaar 154 dequant_intra = dequant_intra_sse2;
482 : edgomez 200 quant_inter = quant_inter_sse2;
483 : Isibaar 154 dequant_inter = dequant_inter_sse2;
484 : h 135
485 : edgomez 851 #if defined(EXPERIMENTAL_SSE2_CODE)
486 :     /* ME; slower than xmm */
487 : edgomez 200 sad16 = sad16_sse2;
488 :     dev16 = dev16_sse2;
489 : edgomez 851 #endif
490 : edgomez 200 /* Forward and Inverse DCT */
491 :     idct = idct_sse2;
492 : Isibaar 154 fdct = fdct_sse2;
493 : h 126 }
494 : Isibaar 3 #endif
495 : edgomez 200
496 : edgomez 851 #if defined(ARCH_IS_IA64)
497 : edgomez 874 if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
498 : Isibaar 209 idct_ia64_init();
499 :     fdct = fdct_ia64;
500 : edgomez 874 idct = idct_ia64; /*not yet working, crashes */
501 : Isibaar 209 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
502 :     interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
503 :     interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
504 :     sad16 = sad16_ia64;
505 :     sad16bi = sad16bi_ia64;
506 :     sad8 = sad8_ia64;
507 :     dev16 = dev16_ia64;
508 : edgomez 874 /* Halfpel8_Refine = Halfpel8_Refine_ia64; */
509 : Isibaar 209 quant_intra = quant_intra_ia64;
510 :     dequant_intra = dequant_intra_ia64;
511 :     quant_inter = quant_inter_ia64;
512 :     dequant_inter = dequant_inter_ia64;
513 :     transfer_8to16copy = transfer_8to16copy_ia64;
514 :     transfer_16to8copy = transfer_16to8copy_ia64;
515 :     transfer_8to16sub = transfer_8to16sub_ia64;
516 :     transfer_8to16sub2 = transfer_8to16sub2_ia64;
517 :     transfer_16to8add = transfer_16to8add_ia64;
518 :     transfer8x8_copy = transfer8x8_copy_ia64;
519 : edgomez 874 DPRINTF(DPRINTF_DEBUG, "Using IA-64 assembler routines.");
520 : Isibaar 209 }
521 :     #endif
522 :    
523 : edgomez 851 #if defined(ARCH_IS_PPC)
524 :     if ((cpu_flags & XVID_CPU_ASM))
525 :     {
526 :     calc_cbp = calc_cbp_ppc;
527 :     }
528 :    
529 :     if ((cpu_flags & XVID_CPU_ALTIVEC))
530 :     {
531 :     calc_cbp = calc_cbp_altivec;
532 :     fdct = fdct_altivec;
533 :     idct = idct_altivec;
534 :     sadInit = sadInit_altivec;
535 :     sad16 = sad16_altivec;
536 :     sad8 = sad8_altivec;
537 :     dev16 = dev16_altivec;
538 :     }
539 : canard 52 #endif
540 : edgomez 851
541 : suxen_drol 1031 #if defined(_DEBUG)
542 :     xvid_debug = init->debug;
543 :     #endif
544 :    
545 :     return 0;
546 : edgomez 851 }
547 :    
548 :    
549 : suxen_drol 890 static int
550 :     xvid_gbl_info(xvid_gbl_info_t * info)
551 :     {
552 :     if (XVID_MAJOR(info->version) != 1) /* v1.x.x */
553 :     return XVID_ERR_VERSION;
554 : edgomez 851
555 : suxen_drol 890 info->actual_version = XVID_VERSION;
556 :     info->build = "dev-api-4";
557 :     info->cpu_flags = detect_cpu_flags();
558 :    
559 :     #if defined(_SMP) && defined(WIN32)
560 :     info->num_threads = pthread_num_processors_np();;
561 :     #else
562 :     info->num_threads = 0;
563 :     #endif
564 :    
565 :     return 0;
566 :     }
567 :    
568 :    
569 : edgomez 851 static int
570 : suxen_drol 890 xvid_gbl_convert(xvid_gbl_convert_t* convert)
571 : edgomez 851 {
572 : suxen_drol 890 int width;
573 :     int height;
574 :     int width2;
575 :     int height2;
576 : edgomez 851 IMAGE img;
577 :    
578 : suxen_drol 890 if (XVID_MAJOR(convert->version) != 1) /* v1.x.x */
579 :     return XVID_ERR_VERSION;
580 :    
581 : edgomez 1053 #if 0
582 :     const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
583 :     #endif
584 : suxen_drol 890 width = convert->width;
585 :     height = convert->height;
586 :     width2 = convert->width/2;
587 :     height2 = convert->height/2;
588 :    
589 :     switch (convert->input.csp & ~XVID_CSP_VFLIP)
590 : edgomez 851 {
591 :     case XVID_CSP_YV12 :
592 : suxen_drol 890 img.y = convert->input.plane[0];
593 :     img.v = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height;
594 :     img.u = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height + (convert->input.stride[0]/2)*height2;
595 : edgomez 851 image_output(&img, width, height, width,
596 : suxen_drol 890 (uint8_t**)convert->output.plane, convert->output.stride,
597 :     convert->output.csp, convert->interlacing);
598 : edgomez 851 break;
599 :    
600 :     default :
601 :     return XVID_ERR_FORMAT;
602 :     }
603 :    
604 :    
605 :     emms();
606 : suxen_drol 890 return 0;
607 : edgomez 851 }
608 :    
609 :    
610 :    
611 :     void fill8(uint8_t * block, int size, int value)
612 :     {
613 :     int i;
614 :     for (i = 0; i < size; i++)
615 :     block[i] = value;
616 :     }
617 :    
618 :     void fill16(int16_t * block, int size, int value)
619 :     {
620 :     int i;
621 :     for (i = 0; i < size; i++)
622 :     block[i] = value;
623 :     }
624 :    
625 :     #define RANDOM(min,max) min + (rand() % (max-min))
626 :    
627 :     void random8(uint8_t * block, int size, int min, int max)
628 :     {
629 :     int i;
630 :     for (i = 0; i < size; i++)
631 :     block[i] = RANDOM(min,max);
632 :     }
633 :    
634 :     void random16(int16_t * block, int size, int min, int max)
635 :     {
636 :     int i;
637 :     for (i = 0; i < size; i++)
638 :     block[i] = RANDOM(min,max);
639 :     }
640 :    
641 :     int compare16(const int16_t * blockA, const int16_t * blockB, int size)
642 :     {
643 :     int i;
644 :     for (i = 0; i < size; i++)
645 :     if (blockA[i] != blockB[i])
646 :     return 1;
647 :    
648 :     return 0;
649 :     }
650 :    
651 :     int diff16(const int16_t * blockA, const int16_t * blockB, int size)
652 :     {
653 :     int i, diff = 0;
654 :     for (i = 0; i < size; i++)
655 : edgomez 982 diff += abs(blockA[i]-blockB[i]);
656 : edgomez 851 return diff;
657 :     }
658 :    
659 :    
660 :     #define XVID_TEST_RANDOM 0x00000001 /* random input data */
661 :     #define XVID_TEST_VERBOSE 0x00000002 /* verbose error output */
662 :    
663 :    
664 :     #define TEST_FORWARD 0x00000001 /* intra */
665 :     #define TEST_FDCT (TEST_FORWARD)
666 :     #define TEST_IDCT (0)
667 :    
668 : suxen_drol 860 static int test_transform(void * funcA, void * funcB, const char * nameB,
669 : edgomez 851 int test, int flags)
670 :     {
671 :     int i;
672 :     int64_t timeSTART;
673 :     int64_t timeA = 0;
674 :     int64_t timeB = 0;
675 :     DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);
676 :     DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);
677 :     int min, max;
678 :     int count = 0;
679 :    
680 :     int tmp;
681 :     int min_error = 0x10000*64;
682 :     int max_error = 0;
683 :    
684 :    
685 :     if ((test & TEST_FORWARD)) /* forward */
686 :     {
687 :     min = -256;
688 :     max = 255;
689 :     }else{ /* inverse */
690 :     min = -2048;
691 :     max = 2047;
692 :     }
693 :    
694 :     for (i = 0; i < 64*64; i++)
695 :     {
696 :     if ((flags & XVID_TEST_RANDOM))
697 :     {
698 :     random16(arrayA, 64, min, max);
699 :     }else{
700 :     fill16(arrayA, 64, i);
701 :     }
702 :     memcpy(arrayB, arrayA, 64*sizeof(int16_t));
703 :    
704 :     if ((test & TEST_FORWARD))
705 :     {
706 :     timeSTART = read_counter();
707 :     ((fdctFunc*)funcA)(arrayA);
708 :     timeA += read_counter() - timeSTART;
709 :    
710 :     timeSTART = read_counter();
711 :     ((fdctFunc*)funcB)(arrayB);
712 :     timeB += read_counter() - timeSTART;
713 :     }
714 :     else
715 :     {
716 :     timeSTART = read_counter();
717 :     ((idctFunc*)funcA)(arrayA);
718 :     timeA += read_counter() - timeSTART;
719 :    
720 :     timeSTART = read_counter();
721 :     ((idctFunc*)funcB)(arrayB);
722 :     timeB += read_counter() - timeSTART;
723 :     }
724 :    
725 :     tmp = diff16(arrayA, arrayB, 64) / 64;
726 :     if (tmp > max_error)
727 :     max_error = tmp;
728 :     if (tmp < min_error)
729 :     min_error = tmp;
730 :    
731 :     count++;
732 :     }
733 :    
734 :     /* print the "average difference" of best/worst transforms */
735 :     printf("%s:\t%i\t(min_error:%i, max_error:%i)\n", nameB, (int)(timeB / count), min_error, max_error);
736 :    
737 :     return 0;
738 :     }
739 :    
740 :    
741 :     #define TEST_QUANT 0x00000001 /* forward quantization */
742 :     #define TEST_INTRA 0x00000002 /* intra */
743 :     #define TEST_QUANT_INTRA (TEST_QUANT|TEST_INTRA)
744 :     #define TEST_QUANT_INTER (TEST_QUANT)
745 :     #define TEST_DEQUANT_INTRA (TEST_INTRA)
746 :     #define TEST_DEQUANT_INTER (0)
747 :    
748 : suxen_drol 860 static int test_quant(void * funcA, void * funcB, const char * nameB,
749 : edgomez 851 int test, int flags)
750 :     {
751 :     int q,i;
752 :     int64_t timeSTART;
753 :     int64_t timeA = 0;
754 :     int64_t timeB = 0;
755 : edgomez 874 int retA = 0, retB = 0;
756 : edgomez 851 DECLARE_ALIGNED_MATRIX(arrayX, 1, 64, int16_t, CACHE_LINE);
757 :     DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);
758 :     DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);
759 :     int min, max;
760 :     int count = 0;
761 :     int errors = 0;
762 :    
763 :     if ((test & TEST_QUANT)) /* quant */
764 :     {
765 :     min = -2048;
766 :     max = 2047;
767 :     }else{ /* dequant */
768 :     min = -256;
769 :     max = 255;
770 :     }
771 :    
772 :     for (q = 1; q <= 31; q++) /* quantizer */
773 :     {
774 :     for (i = min; i < max; i++) /* input coeff */
775 :     {
776 :     if ((flags & XVID_TEST_RANDOM))
777 :     {
778 :     random16(arrayX, 64, min, max);
779 :     }else{
780 :     fill16(arrayX, 64, i);
781 :     }
782 :    
783 :     if ((test & TEST_INTRA)) /* intra */
784 :     {
785 :     timeSTART = read_counter();
786 :     ((quanth263_intraFunc*)funcA)(arrayA, arrayX, q, q);
787 :     timeA += read_counter() - timeSTART;
788 :    
789 :     timeSTART = read_counter();
790 :     ((quanth263_intraFunc*)funcB)(arrayB, arrayX, q, q);
791 :     timeB += read_counter() - timeSTART;
792 :     }
793 :     else /* inter */
794 :     {
795 :     timeSTART = read_counter();
796 :     retA = ((quanth263_interFunc*)funcA)(arrayA, arrayX, q);
797 :     timeA += read_counter() - timeSTART;
798 :    
799 :     timeSTART = read_counter();
800 :     retB = ((quanth263_interFunc*)funcB)(arrayB, arrayX, q);
801 :     timeB += read_counter() - timeSTART;
802 :     }
803 :    
804 :     /* compare return value from quant_inter, and compare (de)quantiz'd arrays */
805 :     if ( ((test&TEST_QUANT) && !(test&TEST_INTRA) && retA != retB ) ||
806 :     compare16(arrayA, arrayB, 64))
807 :     {
808 :     errors++;
809 :     if ((flags & XVID_TEST_VERBOSE))
810 :     printf("%s error: q=%i, i=%i\n", nameB, q, i);
811 :     }
812 :    
813 :     count++;
814 :     }
815 :     }
816 :    
817 :     printf("%s:\t%i", nameB, (int)(timeB / count));
818 :     if (errors>0)
819 :     printf("\t(%i errors out of %i)", errors, count);
820 :     printf("\n");
821 :    
822 :     return 0;
823 :     }
824 :    
825 :    
826 :    
827 :     int xvid_init_test(int flags)
828 :     {
829 : edgomez 882 #if defined(ARCH_IS_IA32)
830 :     int cpu_flags;
831 :     #endif
832 : edgomez 851
833 : edgomez 879 printf("XviD tests\n\n");
834 : edgomez 851
835 : edgomez 879 #if defined(ARCH_IS_IA32)
836 : edgomez 851 cpu_flags = detect_cpu_flags();
837 : edgomez 879 #endif
838 :    
839 : edgomez 851 idct_int32_init();
840 : edgomez 879 emms();
841 : edgomez 851
842 : edgomez 882 srand(time(0));
843 :    
844 : edgomez 879 /* fDCT test */
845 : edgomez 851 printf("--- fdct ---\n");
846 :     test_transform(fdct_int32, fdct_int32, "c", TEST_FDCT, flags);
847 : edgomez 879
848 :     #if defined(ARCH_IS_IA32)
849 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
850 :     test_transform(fdct_int32, fdct_mmx, "mmx", TEST_FDCT, flags);
851 :     if (cpu_flags & XVID_CPU_SSE2)
852 :     test_transform(fdct_int32, fdct_sse2, "sse2", TEST_FDCT, flags);
853 : edgomez 879 #endif
854 : edgomez 851
855 : edgomez 879 /* iDCT test */
856 : edgomez 851 printf("\n--- idct ---\n");
857 :     test_transform(idct_int32, idct_int32, "c", TEST_IDCT, flags);
858 : edgomez 879
859 :     #if defined(ARCH_IS_IA32)
860 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
861 :     test_transform(idct_int32, idct_mmx, "mmx", TEST_IDCT, flags);
862 :     if (cpu_flags & XVID_CPU_MMXEXT)
863 :     test_transform(idct_int32, idct_xmm, "xmm", TEST_IDCT, flags);
864 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
865 :     test_transform(idct_int32, idct_3dne, "3dne", TEST_IDCT, flags);
866 :     if (cpu_flags & XVID_CPU_SSE2)
867 :     test_transform(idct_int32, idct_sse2, "sse2", TEST_IDCT, flags);
868 : edgomez 879 #endif
869 : edgomez 851
870 : edgomez 879 /* Intra quantization test */
871 : edgomez 851 printf("\n--- quant intra ---\n");
872 :     test_quant(quant_intra_c, quant_intra_c, "c", TEST_QUANT_INTRA, flags);
873 : edgomez 879
874 :     #if defined(ARCH_IS_IA32)
875 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
876 :     test_quant(quant_intra_c, quant_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);
877 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
878 :     test_quant(quant_intra_c, quant_intra_3dne, "3dne", TEST_QUANT_INTRA, flags);
879 :     if (cpu_flags & XVID_CPU_SSE2)
880 :     test_quant(quant_intra_c, quant_intra_sse2, "sse2", TEST_QUANT_INTRA, flags);
881 : edgomez 879 #endif
882 : edgomez 851
883 : edgomez 879 /* Inter quantization test */
884 : edgomez 851 printf("\n--- quant inter ---\n");
885 :     test_quant(quant_inter_c, quant_inter_c, "c", TEST_QUANT_INTER, flags);
886 : edgomez 879
887 :     #if defined(ARCH_IS_IA32)
888 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
889 :     test_quant(quant_inter_c, quant_inter_mmx, "mmx", TEST_QUANT_INTER, flags);
890 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
891 :     test_quant(quant_inter_c, quant_inter_3dne, "3dne", TEST_QUANT_INTER, flags);
892 :     if (cpu_flags & XVID_CPU_SSE2)
893 :     test_quant(quant_inter_c, quant_inter_sse2, "sse2", TEST_QUANT_INTER, flags);
894 : edgomez 879 #endif
895 : edgomez 851
896 : edgomez 879 /* Intra dequantization test */
897 : edgomez 851 printf("\n--- dequant intra ---\n");
898 :     test_quant(dequant_intra_c, dequant_intra_c, "c", TEST_DEQUANT_INTRA, flags);
899 : edgomez 879
900 :     #if defined(ARCH_IS_IA32)
901 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
902 :     test_quant(dequant_intra_c, dequant_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);
903 :     if (cpu_flags & XVID_CPU_MMXEXT)
904 :     test_quant(dequant_intra_c, dequant_intra_xmm, "xmm", TEST_DEQUANT_INTRA, flags);
905 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
906 :     test_quant(dequant_intra_c, dequant_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);
907 :     if (cpu_flags & XVID_CPU_SSE2)
908 :     test_quant(dequant_intra_c, dequant_intra_sse2, "sse2", TEST_DEQUANT_INTRA, flags);
909 : edgomez 879 #endif
910 : edgomez 851
911 : edgomez 879 /* Inter dequantization test */
912 : edgomez 851 printf("\n--- dequant inter ---\n");
913 :     test_quant(dequant_inter_c, dequant_inter_c, "c", TEST_DEQUANT_INTER, flags);
914 : edgomez 879
915 :     #if defined(ARCH_IS_IA32)
916 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
917 :     test_quant(dequant_inter_c, dequant_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);
918 :     if (cpu_flags & XVID_CPU_MMXEXT)
919 :     test_quant(dequant_inter_c, dequant_inter_xmm, "xmm", TEST_DEQUANT_INTER, flags);
920 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
921 :     test_quant(dequant_inter_c, dequant_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);
922 :     if (cpu_flags & XVID_CPU_SSE2)
923 :     test_quant(dequant_inter_c, dequant_inter_sse2, "sse2", TEST_DEQUANT_INTER, flags);
924 : edgomez 879 #endif
925 : edgomez 851
926 : edgomez 879 /* Intra quantization test */
927 :     printf("\n--- quant4 intra ---\n");
928 : edgomez 851 test_quant(quant4_intra_c, quant4_intra_c, "c", TEST_QUANT_INTRA, flags);
929 : edgomez 879
930 :     #if defined(ARCH_IS_IA32)
931 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
932 :     test_quant(quant4_intra_c, quant4_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);
933 :     if (cpu_flags & XVID_CPU_MMXEXT)
934 :     test_quant(quant4_intra_c, quant4_intra_xmm, "xmm", TEST_QUANT_INTRA, flags);
935 : edgomez 879 #endif
936 : edgomez 851
937 : edgomez 879 /* Inter quantization test */
938 :     printf("\n--- quant4 inter ---\n");
939 : edgomez 851 test_quant(quant4_inter_c, quant4_inter_c, "c", TEST_QUANT_INTER, flags);
940 : edgomez 879
941 :     #if defined(ARCH_IS_IA32)
942 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
943 :     test_quant(quant4_inter_c, quant4_inter_mmx, "mmx", TEST_QUANT_INTER, flags);
944 :     if (cpu_flags & XVID_CPU_MMXEXT)
945 :     test_quant(quant4_inter_c, quant4_inter_xmm, "xmm", TEST_QUANT_INTER, flags);
946 : edgomez 879 #endif
947 : edgomez 851
948 : edgomez 879 /* Intra dequantization test */
949 :     printf("\n--- dequant4 intra ---\n");
950 : edgomez 851 test_quant(dequant4_intra_c, dequant4_intra_c, "c", TEST_DEQUANT_INTRA, flags);
951 : edgomez 879
952 :     #if defined(ARCH_IS_IA32)
953 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
954 :     test_quant(dequant4_intra_c, dequant4_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);
955 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
956 :     test_quant(dequant4_intra_c, dequant4_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);
957 : edgomez 879 #endif
958 : edgomez 851
959 : edgomez 879 /* Inter dequantization test */
960 :     printf("\n--- dequant4 inter ---\n");
961 : edgomez 851 test_quant(dequant4_inter_c, dequant4_inter_c, "c", TEST_DEQUANT_INTER, flags);
962 : edgomez 879
963 :     #if defined(ARCH_IS_IA32)
964 : edgomez 851 if (cpu_flags & XVID_CPU_MMX)
965 :     test_quant(dequant4_inter_c, dequant4_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);
966 :     if (cpu_flags & XVID_CPU_3DNOWEXT)
967 :     test_quant(dequant4_inter_c, dequant4_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);
968 : edgomez 879 #endif
969 : edgomez 851
970 : edgomez 879 emms();
971 : edgomez 851
972 : suxen_drol 890 return 0;
973 : Isibaar 3 }
974 :    
975 : edgomez 851
976 : suxen_drol 890 /*****************************************************************************
977 :     * XviD Global Entry point
978 :     *
979 :     * Well this function initialize all internal function pointers according
980 :     * to the CPU features forced by the library client or autodetected (depending
981 :     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
982 :     * image colorspace transformation tables.
983 :     *
984 :     ****************************************************************************/
985 :    
986 :    
987 : edgomez 851 int
988 : suxen_drol 890 xvid_global(void *handle,
989 : edgomez 851 int opt,
990 :     void *param1,
991 :     void *param2)
992 :     {
993 :     switch(opt)
994 :     {
995 : suxen_drol 890 case XVID_GBL_INIT :
996 :     return xvid_gbl_init((xvid_gbl_init_t*)param1);
997 : edgomez 851
998 : suxen_drol 890 case XVID_GBL_INFO :
999 :     return xvid_gbl_info((xvid_gbl_info_t*)param1);
1000 : edgomez 851
1001 : suxen_drol 890 case XVID_GBL_CONVERT :
1002 :     return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
1003 :    
1004 :     case XVID_GBL_TEST :
1005 : edgomez 879 {
1006 :     ptr_t flags = (ptr_t)param1;
1007 :     return xvid_init_test((int)flags);
1008 :     }
1009 : edgomez 851 default :
1010 :     return XVID_ERR_FAIL;
1011 :     }
1012 :     }
1013 :    
1014 : edgomez 200 /*****************************************************************************
1015 :     * XviD Native decoder entry point
1016 :     *
1017 :     * This function is just a wrapper to all the option cases.
1018 :     *
1019 :     * Returned values : XVID_ERR_FAIL when opt is invalid
1020 :     * else returns the wrapped function result
1021 :     *
1022 :     ****************************************************************************/
1023 :    
1024 : edgomez 195 int
1025 :     xvid_decore(void *handle,
1026 :     int opt,
1027 :     void *param1,
1028 :     void *param2)
1029 : Isibaar 3 {
1030 : edgomez 195 switch (opt) {
1031 :     case XVID_DEC_CREATE:
1032 : suxen_drol 890 return decoder_create((xvid_dec_create_t *) param1);
1033 : Isibaar 3
1034 : edgomez 195 case XVID_DEC_DESTROY:
1035 :     return decoder_destroy((DECODER *) handle);
1036 :    
1037 : suxen_drol 890 case XVID_DEC_DECODE:
1038 :     return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
1039 :    
1040 : Isibaar 3 default:
1041 : edgomez 195 return XVID_ERR_FAIL;
1042 :     }
1043 : Isibaar 3 }
1044 :    
1045 :    
1046 : edgomez 200 /*****************************************************************************
1047 :     * XviD Native encoder entry point
1048 :     *
1049 :     * This function is just a wrapper to all the option cases.
1050 :     *
1051 :     * Returned values : XVID_ERR_FAIL when opt is invalid
1052 :     * else returns the wrapped function result
1053 :     *
1054 :     ****************************************************************************/
1055 :    
1056 : edgomez 195 int
1057 :     xvid_encore(void *handle,
1058 :     int opt,
1059 :     void *param1,
1060 :     void *param2)
1061 : Isibaar 3 {
1062 : edgomez 195 switch (opt) {
1063 :     case XVID_ENC_ENCODE:
1064 : edgomez 851
1065 : suxen_drol 890 return enc_encode((Encoder *) handle,
1066 :     (xvid_enc_frame_t *) param1,
1067 :     (xvid_enc_stats_t *) param2);
1068 : Isibaar 3
1069 : edgomez 195 case XVID_ENC_CREATE:
1070 : suxen_drol 948 return enc_create((xvid_enc_create_t *) param1);
1071 : Isibaar 3
1072 : edgomez 195 case XVID_ENC_DESTROY:
1073 : suxen_drol 890 return enc_destroy((Encoder *) handle);
1074 : edgomez 195
1075 : Isibaar 3 default:
1076 : edgomez 195 return XVID_ERR_FAIL;
1077 :     }
1078 : Isibaar 3 }

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