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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/xvidcore/src/xvid.c revision 585, Wed Oct 9 14:35:57 2002 UTC branches/dev-api-4/xvidcore/src/xvid.c revision 1081, Thu Jul 10 17:41:48 2003 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - Native API implementation  -   *  - Native API implementation  -
5   *   *
6   *  Copyright(C) 2001-2002 Peter Ross <pross@xvid.org>   *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
  *  
  *  This program is an implementation of a part of one or more MPEG-4  
  *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *  to use this software module in hardware or software products are  
  *  advised that its use may infringe existing patents or copyrights, and  
  *  any such use would be at such party's own risk.  The original  
  *  developer of this software module and his/her company, and subsequent  
  *  editors and their companies, will have no liability for use of this  
  *  software or modifications or derivatives thereof.  
7   *   *
8   *  This program is free software ; you can redistribute it and/or modify   *  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   *  it under the terms of the GNU General Public License as published by
# Line 28  Line 19 
19   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
20   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21   *   *
22   * $Id: xvid.c,v 1.38 2002-10-09 14:35:57 ia64p Exp $   * $Id: xvid.c,v 1.45.2.9 2003-07-10 17:39:51 edgomez Exp $
23   *   *
24   ****************************************************************************/   ****************************************************************************/
25    
26    #include <stdio.h>
27    #include <stdlib.h>
28    #include <string.h>
29    #include <time.h>
30    
31  #include "xvid.h"  #include "xvid.h"
32  #include "decoder.h"  #include "decoder.h"
33  #include "encoder.h"  #include "encoder.h"
# Line 40  Line 36 
36  #include "dct/fdct.h"  #include "dct/fdct.h"
37  #include "image/colorspace.h"  #include "image/colorspace.h"
38  #include "image/interpolate8x8.h"  #include "image/interpolate8x8.h"
39    #include "image/reduced.h"
40  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
41    #include "utils/mbfunctions.h"
42  #include "quant/quant_h263.h"  #include "quant/quant_h263.h"
43  #include "quant/quant_mpeg4.h"  #include "quant/quant_mpeg4.h"
44  #include "motion/motion.h"  #include "motion/motion.h"
# Line 49  Line 47 
47  #include "utils/timer.h"  #include "utils/timer.h"
48  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
49    
50  #if defined(ARCH_X86) && defined(EXPERIMENTAL_SSE2_CODE)  #if defined(_DEBUG)
51    unsigned int xvid_debug = 0; /* xvid debug mask */
52    #endif
53    
54  #ifdef WIN32  #if defined(ARCH_IS_IA32)
55    
56    #if defined(_MSC_VER)
57  #include <windows.h>  #include <windows.h>
58  #else  #else
59  #include <signal.h>  #include <signal.h>
60  #include <setjmp.h>  #include <setjmp.h>
 #endif  
   
   
 #ifndef WIN32  
61    
62  static jmp_buf mark;  static jmp_buf mark;
63    
# Line 72  Line 70 
70    
71    
72  /*  /*
73   * Calls the funcptr, and returns whether SIGILL (illegal instruction) was signalled   * Calls the funcptr, and returns whether SIGILL (illegal instruction) was
74     * signalled
75     *
76   * Return values:   * Return values:
77   * -1 : could not determine   * -1 : could not determine
78   * 0  : SIGILL was *not* signalled   * 0  : SIGILL was *not* signalled
# Line 82  Line 82 
82  int  int
83  sigill_check(void (*func)())  sigill_check(void (*func)())
84  {  {
85  #ifdef WIN32  #if defined(_MSC_VER)
86          _try {          _try {
87                  func();                  func();
88          }          }
# Line 116  Line 116 
116  }  }
117  #endif  #endif
118    
119    
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  /*****************************************************************************  /*****************************************************************************
147   * XviD Init Entry point   * XviD Init Entry point
148   *   *
# Line 130  Line 157 
157   *   *
158   ****************************************************************************/   ****************************************************************************/
159    
 int  
 xvid_init(void *handle,  
                   int opt,  
                   void *param1,  
                   void *param2)  
 {  
         int cpu_flags;  
         XVID_INIT_PARAM *init_param;  
   
         init_param = (XVID_INIT_PARAM *) param1;  
   
         /* Inform the client the API version */  
         init_param->api_version = API_VERSION;  
   
         /* Inform the client the core build - unused because we're still alpha */  
         init_param->core_build = 1000;  
   
         /* Do we have to force CPU features  ? */  
         if ((init_param->cpu_flags & XVID_CPU_FORCE)) {  
160    
161                  cpu_flags = init_param->cpu_flags;  static
162    int xvid_gbl_init(xvid_gbl_init_t * init)
         } else {  
   
                 cpu_flags = check_cpu_features();  
   
 #if defined(ARCH_X86) && defined(EXPERIMENTAL_SSE2_CODE)  
                 if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))  
                         cpu_flags &= ~XVID_CPU_SSE;  
   
                 if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))  
                         cpu_flags &= ~XVID_CPU_SSE2;  
 #endif  
         }  
   
         if ((init_param->cpu_flags & XVID_CPU_CHKONLY))  
163          {          {
164                  init_param->cpu_flags = cpu_flags;          unsigned int cpu_flags;
                 return XVID_ERR_OK;  
         }  
165    
166          init_param->cpu_flags = cpu_flags;          if (XVID_MAJOR(init->version) != 1) /* v1.x.x */
167                    return XVID_ERR_VERSION;
168    
169            cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
170    
171          /* Initialize the function pointers */          /* Initialize the function pointers */
172          idct_int32_init();          idct_int32_init();
# Line 203  Line 197 
197          transfer_8to16copy = transfer_8to16copy_c;          transfer_8to16copy = transfer_8to16copy_c;
198          transfer_16to8copy = transfer_16to8copy_c;          transfer_16to8copy = transfer_16to8copy_c;
199          transfer_8to16sub  = transfer_8to16sub_c;          transfer_8to16sub  = transfer_8to16sub_c;
200            transfer_8to16subro  = transfer_8to16subro_c;
201          transfer_8to16sub2 = transfer_8to16sub2_c;          transfer_8to16sub2 = transfer_8to16sub2_c;
202          transfer_16to8add  = transfer_16to8add_c;          transfer_16to8add  = transfer_16to8add_c;
203          transfer8x8_copy   = transfer8x8_copy_c;          transfer8x8_copy   = transfer8x8_copy_c;
204    
205            /* Interlacing functions */
206            MBFieldTest = MBFieldTest_c;
207    
208          /* Image interpolation related functions */          /* Image interpolation related functions */
209          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;
210          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;
211          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
212    
213            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          /* Initialize internal colorspace transformation tables */          /* Initialize internal colorspace transformation tables */
236          colorspace_init();          colorspace_init();
237    
238          /* All colorspace transformation functions User Format->YV12 */          /* All colorspace transformation functions User Format->YV12 */
239            yv12_to_yv12    = yv12_to_yv12_c;
240          rgb555_to_yv12 = rgb555_to_yv12_c;          rgb555_to_yv12 = rgb555_to_yv12_c;
241          rgb565_to_yv12 = rgb565_to_yv12_c;          rgb565_to_yv12 = rgb565_to_yv12_c;
242          rgb24_to_yv12  = rgb24_to_yv12_c;          bgr_to_yv12     = bgr_to_yv12_c;
243          rgb32_to_yv12  = rgb32_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
244          yuv_to_yv12    = yuv_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
245            rgba_to_yv12    = rgba_to_yv12_c;
246          yuyv_to_yv12   = yuyv_to_yv12_c;          yuyv_to_yv12   = yuyv_to_yv12_c;
247          uyvy_to_yv12   = uyvy_to_yv12_c;          uyvy_to_yv12   = uyvy_to_yv12_c;
248    
249            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          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
260          yv12_to_rgb555 = yv12_to_rgb555_c;          yv12_to_rgb555 = yv12_to_rgb555_c;
261          yv12_to_rgb565 = yv12_to_rgb565_c;          yv12_to_rgb565 = yv12_to_rgb565_c;
262          yv12_to_rgb24  = yv12_to_rgb24_c;          yv12_to_bgr     = yv12_to_bgr_c;
263          yv12_to_rgb32  = yv12_to_rgb32_c;          yv12_to_bgra    = yv12_to_bgra_c;
264          yv12_to_yuv    = yv12_to_yuv_c;          yv12_to_abgr    = yv12_to_abgr_c;
265            yv12_to_rgba    = yv12_to_rgba_c;
266          yv12_to_yuyv   = yv12_to_yuyv_c;          yv12_to_yuyv   = yv12_to_yuyv_c;
267          yv12_to_uyvy   = yv12_to_uyvy_c;          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    
278          /* Functions used in motion estimation algorithms */          /* Functions used in motion estimation algorithms */
279          calc_cbp = calc_cbp_c;          calc_cbp = calc_cbp_c;
280          sad16    = sad16_c;          sad16    = sad16_c;
# Line 240  Line 282 
282          sad16bi  = sad16bi_c;          sad16bi  = sad16bi_c;
283          sad8bi   = sad8bi_c;          sad8bi   = sad8bi_c;
284          dev16    = dev16_c;          dev16    = dev16_c;
285            sad16v   = sad16v_c;
286    
287    /*      Halfpel8_Refine = Halfpel8_Refine_c; */
288    
289    #if defined(ARCH_IS_IA32)
290    
291            if ((cpu_flags & XVID_CPU_ASM)) {
292                    vfilter_31 = xvid_VFilter_31_x86;
293                    hfilter_31 = xvid_HFilter_31_x86;
294            }
295    
296          Halfpel8_Refine = Halfpel8_Refine_c;          if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
297                    (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
298                    (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))
299            {
300                    /* Restore FPU context : emms_c is a nop functions */
301                    emms = emms_mmx;
302            }
303    
304  #ifdef ARCH_X86          if ((cpu_flags & XVID_CPU_MMX)) {
         if ((cpu_flags & XVID_CPU_MMX) > 0) {  
305    
306                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
307                  fdct = fdct_mmx;                  fdct = fdct_mmx;
308                  idct = idct_mmx;                  idct = idct_mmx;
309    
                 /* To restore FPU context after mmx use */  
                 emms = emms_mmx;  
   
310                  /* Quantization related functions */                  /* Quantization related functions */
311                  quant_intra   = quant_intra_mmx;                  quant_intra   = quant_intra_mmx;
312                  dequant_intra = dequant_intra_mmx;                  dequant_intra = dequant_intra_mmx;
# Line 268  Line 322 
322                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
323                  transfer_16to8copy = transfer_16to8copy_mmx;                  transfer_16to8copy = transfer_16to8copy_mmx;
324                  transfer_8to16sub  = transfer_8to16sub_mmx;                  transfer_8to16sub  = transfer_8to16sub_mmx;
325                    transfer_8to16subro  = transfer_8to16subro_mmx;
326                  transfer_8to16sub2 = transfer_8to16sub2_mmx;                  transfer_8to16sub2 = transfer_8to16sub2_mmx;
327                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
328                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
329    
330                    /* Interlacing Functions */
331                    MBFieldTest = MBFieldTest_mmx;
332    
333                  /* Image Interpolation related functions */                  /* Image Interpolation related functions */
334                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;
335                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;
336                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
337    
338                  /* Image RGB->YV12 related functions */                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
339                  rgb24_to_yv12 = rgb24_to_yv12_mmx;                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
340                  rgb32_to_yv12 = rgb32_to_yv12_mmx;  
341                  yuv_to_yv12   = yuv_to_yv12_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
342                    interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
343    
344                    /* reduced resolution */
345                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
346                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
347                    hfilter_31 = xvid_HFilter_31_mmx;
348                    filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_mmx;
349                    filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_mmx;
350    
351                    /* image input xxx_to_yv12 related functions */
352                    yv12_to_yv12  = yv12_to_yv12_mmx;
353                    bgr_to_yv12   = bgr_to_yv12_mmx;
354                    bgra_to_yv12  = bgra_to_yv12_mmx;
355                  yuyv_to_yv12  = yuyv_to_yv12_mmx;                  yuyv_to_yv12  = yuyv_to_yv12_mmx;
356                  uyvy_to_yv12  = uyvy_to_yv12_mmx;                  uyvy_to_yv12  = uyvy_to_yv12_mmx;
357    
358                  /* Image YV12->RGB related functions */                  /* image output yv12_to_xxx related functions */
359                  yv12_to_rgb24 = yv12_to_rgb24_mmx;                  yv12_to_bgr   = yv12_to_bgr_mmx;
360                  yv12_to_rgb32 = yv12_to_rgb32_mmx;                  yv12_to_bgra  = yv12_to_bgra_mmx;
361                  yv12_to_yuyv  = yv12_to_yuyv_mmx;                  yv12_to_yuyv  = yv12_to_yuyv_mmx;
362                  yv12_to_uyvy  = yv12_to_uyvy_mmx;                  yv12_to_uyvy  = yv12_to_uyvy_mmx;
363    
364                    yv12_to_yuyvi = yv12_to_yuyvi_mmx;
365                    yv12_to_uyvyi = yv12_to_uyvyi_mmx;
366    
367                  /* Motion estimation related functions */                  /* Motion estimation related functions */
368                  calc_cbp = calc_cbp_mmx;                  calc_cbp = calc_cbp_mmx;
369                  sad16    = sad16_mmx;                  sad16    = sad16_mmx;
# Line 298  Line 371 
371                  sad16bi = sad16bi_mmx;                  sad16bi = sad16bi_mmx;
372                  sad8bi  = sad8bi_mmx;                  sad8bi  = sad8bi_mmx;
373                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
374                    sad16v   = sad16v_mmx;
375          }          }
376    
377          /* these 3dnow functions are faster than mmx, but slower than xmm. */          /* these 3dnow functions are faster than mmx, but slower than xmm. */
378          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW)) {
379    
380                    emms = emms_3dn;
381    
382                  /* ME functions */                  /* ME functions */
383                  sad16bi = sad16bi_3dn;                  sad16bi = sad16bi_3dn;
384                  sad8bi  = sad8bi_3dn;                  sad8bi  = sad8bi_3dn;
385    
386                    yuyv_to_yv12  = yuyv_to_yv12_3dn;
387                    uyvy_to_yv12  = uyvy_to_yv12_3dn;
388          }          }
389    
390    
391          if ((cpu_flags & XVID_CPU_MMXEXT) > 0) {          if ((cpu_flags & XVID_CPU_MMXEXT)) {
392    
393                  /* Inverse DCT */                  /* Inverse DCT */
394                  idct = idct_xmm;                  idct = idct_xmm;
# Line 320  Line 398 
398                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;
399                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
400    
401                    /* reduced resolution */
402                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_xmm;
403                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
404    
405                  /* Quantization */                  /* Quantization */
406                    quant4_intra = quant4_intra_xmm;
407                    quant4_inter = quant4_inter_xmm;
408    
409                  dequant_intra = dequant_intra_xmm;                  dequant_intra = dequant_intra_xmm;
410                  dequant_inter = dequant_inter_xmm;                  dequant_inter = dequant_inter_xmm;
411    
# Line 328  Line 413 
413                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
414    
415                  /* Colorspace transformation */                  /* Colorspace transformation */
416                  yuv_to_yv12 = yuv_to_yv12_xmm;                  yv12_to_yv12  = yv12_to_yv12_xmm;
417                    yuyv_to_yv12  = yuyv_to_yv12_xmm;
418                    uyvy_to_yv12  = uyvy_to_yv12_xmm;
419    
420                  /* ME functions */                  /* ME functions */
421                  sad16 = sad16_xmm;                  sad16 = sad16_xmm;
# Line 336  Line 423 
423                  sad16bi = sad16bi_xmm;                  sad16bi = sad16bi_xmm;
424                  sad8bi  = sad8bi_xmm;                  sad8bi  = sad8bi_xmm;
425                  dev16 = dev16_xmm;                  dev16 = dev16_xmm;
426                    sad16v   = sad16v_xmm;
427          }          }
428    
429          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW)) {
430    
431                  /* Interpolation */                  /* Interpolation */
432                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
# Line 347  Line 434 
434                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
435          }          }
436    
437          if ((cpu_flags & XVID_CPU_SSE2) > 0) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
438  #ifdef EXPERIMENTAL_SSE2_CODE  
439                    /* Inverse DCT */
440                    idct =  idct_3dne;
441    
442                    /* Buffer transfer */
443                    transfer_8to16copy =  transfer_8to16copy_3dne;
444                    transfer_16to8copy = transfer_16to8copy_3dne;
445                    transfer_8to16sub =  transfer_8to16sub_3dne;
446                    transfer_8to16subro =  transfer_8to16subro_3dne;
447                    transfer_8to16sub2 =  transfer_8to16sub2_3dne;
448                    transfer_16to8add = transfer_16to8add_3dne;
449                    transfer8x8_copy = transfer8x8_copy_3dne;
450    
451                    /* Quantization */
452                    dequant4_intra = dequant4_intra_3dne;
453                    dequant4_inter = dequant4_inter_3dne;
454                    quant_intra = quant_intra_3dne;
455                    quant_inter = quant_inter_3dne;
456                    dequant_intra = dequant_intra_3dne;
457                    dequant_inter = dequant_inter_3dne;
458    
459                    /* ME functions */
460                    calc_cbp = calc_cbp_3dne;
461                    sad16 = sad16_3dne;
462                    sad8 = sad8_3dne;
463                    sad16bi = sad16bi_3dne;
464                    sad8bi = sad8bi_3dne;
465                    dev16 = dev16_3dne;
466    
467                    /* Interpolation */
468                    interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
469                    interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
470                    interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
471            }
472    
473    
474            if ((cpu_flags & XVID_CPU_SSE2)) {
475    
476                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
477    
# Line 358  Line 481 
481                  quant_inter   = quant_inter_sse2;                  quant_inter   = quant_inter_sse2;
482                  dequant_inter = dequant_inter_sse2;                  dequant_inter = dequant_inter_sse2;
483    
484                  /* ME */  #if defined(EXPERIMENTAL_SSE2_CODE)
485                    /* ME; slower than xmm */
486                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
487                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
488    #endif
489                  /* Forward and Inverse DCT */                  /* Forward and Inverse DCT */
490    #if 0 /* Both function are known to be unprecise, better keep them deactivated */
491                  idct  = idct_sse2;                  idct  = idct_sse2;
492                  fdct = fdct_sse2;                  fdct = fdct_sse2;
493  #endif  #endif
494          }          }
   
495  #endif  #endif
496    
497  #ifdef ARCH_IA64  #if defined(ARCH_IS_IA64)
498          if ((cpu_flags & XVID_CPU_IA64) > 0) { //use assembler routines?          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
499            idct_ia64_init();            idct_ia64_init();
500            fdct = fdct_ia64;            fdct = fdct_ia64;
501            idct = idct_ia64;            idct = idct_ia64;   /*not yet working, crashes */
502            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
503            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
504            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
# Line 382  Line 506 
506            sad16bi = sad16bi_ia64;            sad16bi = sad16bi_ia64;
507            sad8 = sad8_ia64;            sad8 = sad8_ia64;
508            dev16 = dev16_ia64;            dev16 = dev16_ia64;
509            Halfpel8_Refine = Halfpel8_Refine_ia64;  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */
510            quant_intra = quant_intra_ia64;            quant_intra = quant_intra_ia64;
511            dequant_intra = dequant_intra_ia64;            dequant_intra = dequant_intra_ia64;
512            quant_inter = quant_inter_ia64;            quant_inter = quant_inter_ia64;
# Line 393  Line 517 
517            transfer_8to16sub2 = transfer_8to16sub2_ia64;            transfer_8to16sub2 = transfer_8to16sub2_ia64;
518            transfer_16to8add = transfer_16to8add_ia64;            transfer_16to8add = transfer_16to8add_ia64;
519            transfer8x8_copy = transfer8x8_copy_ia64;            transfer8x8_copy = transfer8x8_copy_ia64;
 //        DEBUG("Using IA-64 assembler routines.\n");  
520          }          }
521  #endif  #endif
522    
523  #ifdef ARCH_PPC  #if defined(ARCH_IS_PPC)
524  #ifdef ARCH_PPC_ALTIVEC          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;          calc_cbp = calc_cbp_altivec;
532          fdct = fdct_altivec;          fdct = fdct_altivec;
533          idct = idct_altivec;          idct = idct_altivec;
# Line 406  Line 535 
535          sad16 = sad16_altivec;          sad16 = sad16_altivec;
536          sad8 = sad8_altivec;          sad8 = sad8_altivec;
537          dev16 = dev16_altivec;          dev16 = dev16_altivec;
538            }
539    #endif
540    
541    #if defined(_DEBUG)
542        xvid_debug = init->debug;
543    #endif
544    
545        return 0;
546    }
547    
548    
549    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    
555            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  #else
562          calc_cbp = calc_cbp_ppc;          info->num_threads = 0;
563  #endif  #endif
564    
565            return 0;
566    }
567    
568    
569    static int
570    xvid_gbl_convert(xvid_gbl_convert_t* convert)
571    {
572            int width;
573            int height;
574            int width2;
575            int height2;
576            IMAGE img;
577    
578            if (XVID_MAJOR(convert->version) != 1)   /* v1.x.x */
579                  return XVID_ERR_VERSION;
580    
581    #if 0
582            const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
583  #endif  #endif
584            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            {
591                    case XVID_CSP_YV12 :
592                            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                            image_output(&img, width, height, width,
596                                                    (uint8_t**)convert->output.plane, convert->output.stride,
597                                                    convert->output.csp, convert->interlacing);
598                            break;
599    
600          return XVID_ERR_OK;                  default :
601                            return XVID_ERR_FORMAT;
602            }
603    
604    
605            emms();
606            return 0;
607    }
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                    diff += abs(blockA[i]-blockB[i]);
656            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    static int test_transform(void * funcA, void * funcB, const char * nameB,
669                                       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    static int test_quant(void * funcA, void * funcB, const char * nameB,
749                               int test, int flags)
750    {
751            int q,i;
752            int64_t timeSTART;
753            int64_t timeA = 0;
754            int64_t timeB = 0;
755            int retA = 0, retB = 0;
756            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    #if defined(ARCH_IS_IA32)
830            int cpu_flags;
831    #endif
832    
833            printf("XviD tests\n\n");
834    
835    #if defined(ARCH_IS_IA32)
836            cpu_flags = detect_cpu_flags();
837    #endif
838    
839            idct_int32_init();
840            emms();
841    
842            srand(time(0));
843    
844            /* fDCT test */
845            printf("--- fdct ---\n");
846                    test_transform(fdct_int32, fdct_int32, "c", TEST_FDCT, flags);
847    
848    #if defined(ARCH_IS_IA32)
849            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    #endif
854    
855            /* iDCT test */
856            printf("\n--- idct ---\n");
857                    test_transform(idct_int32, idct_int32, "c", TEST_IDCT, flags);
858    
859    #if defined(ARCH_IS_IA32)
860            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    #endif
869    
870            /* Intra quantization test */
871            printf("\n--- quant intra ---\n");
872                    test_quant(quant_intra_c, quant_intra_c, "c", TEST_QUANT_INTRA, flags);
873    
874    #if defined(ARCH_IS_IA32)
875            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    #endif
882    
883            /* Inter quantization test */
884            printf("\n--- quant inter ---\n");
885                    test_quant(quant_inter_c, quant_inter_c, "c", TEST_QUANT_INTER, flags);
886    
887    #if defined(ARCH_IS_IA32)
888            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    #endif
895    
896            /* Intra dequantization test */
897            printf("\n--- dequant intra ---\n");
898                    test_quant(dequant_intra_c, dequant_intra_c, "c", TEST_DEQUANT_INTRA, flags);
899    
900    #if defined(ARCH_IS_IA32)
901            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    #endif
910    
911            /* Inter dequantization test */
912            printf("\n--- dequant inter ---\n");
913                    test_quant(dequant_inter_c, dequant_inter_c, "c", TEST_DEQUANT_INTER, flags);
914    
915    #if defined(ARCH_IS_IA32)
916            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    #endif
925    
926            /* Intra quantization test */
927            printf("\n--- quant4 intra ---\n");
928                    test_quant(quant4_intra_c, quant4_intra_c, "c", TEST_QUANT_INTRA, flags);
929    
930    #if defined(ARCH_IS_IA32)
931            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    #endif
936    
937            /* Inter quantization test */
938            printf("\n--- quant4 inter ---\n");
939                    test_quant(quant4_inter_c, quant4_inter_c, "c", TEST_QUANT_INTER, flags);
940    
941    #if defined(ARCH_IS_IA32)
942            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    #endif
947    
948            /* Intra dequantization test */
949            printf("\n--- dequant4 intra ---\n");
950                    test_quant(dequant4_intra_c, dequant4_intra_c, "c", TEST_DEQUANT_INTRA, flags);
951    
952    #if defined(ARCH_IS_IA32)
953            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    #endif
958    
959            /* Inter dequantization test */
960            printf("\n--- dequant4 inter ---\n");
961                    test_quant(dequant4_inter_c, dequant4_inter_c, "c", TEST_DEQUANT_INTER, flags);
962    
963    #if defined(ARCH_IS_IA32)
964            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    #endif
969    
970            emms();
971    
972            return 0;
973    }
974    
975    
976    /*****************************************************************************
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    int
988    xvid_global(void *handle,
989                      int opt,
990                      void *param1,
991                      void *param2)
992    {
993            switch(opt)
994            {
995                    case XVID_GBL_INIT :
996                            return xvid_gbl_init((xvid_gbl_init_t*)param1);
997    
998            case XVID_GBL_INFO :
999                return xvid_gbl_info((xvid_gbl_info_t*)param1);
1000    
1001                    case XVID_GBL_CONVERT :
1002                            return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
1003    
1004                    case XVID_GBL_TEST :
1005                    {
1006                            ptr_t flags = (ptr_t)param1;
1007                            return xvid_init_test((int)flags);
1008                    }
1009                    default :
1010                            return XVID_ERR_FAIL;
1011            }
1012  }  }
1013    
1014  /*****************************************************************************  /*****************************************************************************
# Line 431  Line 1028 
1028                          void *param2)                          void *param2)
1029  {  {
1030          switch (opt) {          switch (opt) {
         case XVID_DEC_DECODE:  
                 return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1);  
   
1031          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
1032                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((xvid_dec_create_t *) param1);
1033    
1034          case XVID_DEC_DESTROY:          case XVID_DEC_DESTROY:
1035                  return decoder_destroy((DECODER *) handle);                  return decoder_destroy((DECODER *) handle);
1036    
1037            case XVID_DEC_DECODE:
1038                    return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
1039    
1040          default:          default:
1041                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
1042          }          }
# Line 464  Line 1061 
1061  {  {
1062          switch (opt) {          switch (opt) {
1063          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
1064                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,  
1065                                                            (XVID_ENC_STATS *) param2);                  return enc_encode((Encoder *) handle,
1066                                                              (xvid_enc_frame_t *) param1,
1067                                                              (xvid_enc_stats_t *) param2);
1068    
1069          case XVID_ENC_CREATE:          case XVID_ENC_CREATE:
1070                  return encoder_create((XVID_ENC_PARAM *) param1);                  return enc_create((xvid_enc_create_t *) param1);
1071    
1072          case XVID_ENC_DESTROY:          case XVID_ENC_DESTROY:
1073                  return encoder_destroy((Encoder *) handle);                  return enc_destroy((Encoder *) handle);
1074    
1075          default:          default:
1076                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;

Legend:
Removed from v.585  
changed lines
  Added in v.1081

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