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

Diff of /xvidcore/src/xvid.c

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

revision 1.43, Wed Feb 19 21:13:00 2003 UTC revision 1.74, Fri Nov 14 15:43:27 2008 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-2004 Peter Ross <pross@xvid.org>
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
10   *  the Free Software Foundation ; either version 2 of the License, or   *  the Free Software Foundation ; either version 2 of the License, or
# Line 34  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"
 #include "image/reduced.h"  
39  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
40  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
41  #include "quant/quant_h263.h"  #include "quant/quant.h"
 #include "quant/quant_mpeg4.h"  
42  #include "motion/motion.h"  #include "motion/motion.h"
43    #include "motion/gmc.h"
44  #include "motion/sad.h"  #include "motion/sad.h"
45  #include "utils/emms.h"  #include "utils/emms.h"
46  #include "utils/timer.h"  #include "utils/timer.h"
47  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
48    #include "image/qpel.h"
49    #include "image/postprocessing.h"
50    
51  #if defined(ARCH_IS_IA32)  #if defined(_DEBUG)
52    unsigned int xvid_debug = 0; /* xvid debug mask */
53    #endif
54    
55  #if defined(_MSC_VER)  #if (defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)) && defined(_MSC_VER)
56  #       include <windows.h>  #       include <windows.h>
57  #else  #elif defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64) || defined(ARCH_IS_PPC)
58  #       include <signal.h>  #       include <signal.h>
59  #       include <setjmp.h>  #       include <setjmp.h>
60    
# Line 72  Line 77 
77   *   0 : SIGILL was *not* signalled   *   0 : SIGILL was *not* signalled
78   *   1 : SIGILL was signalled   *   1 : SIGILL was signalled
79   */   */
80    #if (defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)) && defined(_MSC_VER)
81  int  static int
82  sigill_check(void (*func)())  sigill_check(void (*func)())
83  {  {
 #if defined(_MSC_VER)  
84          _try {          _try {
85                  func();                  func();
86          }          } _except(EXCEPTION_EXECUTE_HANDLER) {
         _except(EXCEPTION_EXECUTE_HANDLER) {  
87    
88                  if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)                  if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)
89                          return 1;                          return(1);
90          }          }
91          return 0;          return(0);
92  #else  }
93    #elif defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64) || defined(ARCH_IS_PPC)
94    static int
95    sigill_check(void (*func)())
96    {
97      void * old_handler;      void * old_handler;
98      int jmpret;      int jmpret;
99    
100        /* Set our SIGILL handler */
101      old_handler = signal(SIGILL, sigill_handler);      old_handler = signal(SIGILL, sigill_handler);
102      if (old_handler == SIG_ERR)  
103      {      /* Check for error */
104          return -1;      if (old_handler == SIG_ERR) {
105            return(-1);
106      }      }
107    
108        /* Save stack context, so if func triggers a SIGILL, we can still roll
109             * back to a valid CPU state */
110      jmpret = setjmp(mark);      jmpret = setjmp(mark);
111      if (jmpret == 0)  
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          func();          func();
118      }      }
119    
120        /* Restore old signal handler */
121      signal(SIGILL, old_handler);      signal(SIGILL, old_handler);
122    
123      return jmpret;      return(jmpret);
 #endif  
124  }  }
125  #endif  #endif
126    
127    
128  /* detect cpu flags  */  /* detect cpu flags  */
129  static unsigned int  static unsigned int
130  detect_cpu_flags()  detect_cpu_flags(void)
131  {  {
132          /* enable native assembly optimizations by default */          /* enable native assembly optimizations by default */
133          unsigned int cpu_flags = XVID_CPU_ASM;          unsigned int cpu_flags = XVID_CPU_ASM;
134    
135  #if defined(ARCH_IS_IA32)  #if defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)
136          cpu_flags |= check_cpu_features();          cpu_flags |= check_cpu_features();
137          if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))          if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
138                  cpu_flags &= ~XVID_CPU_SSE;                  cpu_flags &= ~XVID_CPU_SSE;
139    
140          if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))          if ((cpu_flags & (XVID_CPU_SSE2|XVID_CPU_SSE3|XVID_CPU_SSE41)) && sigill_check(sse2_os_trigger))
141                  cpu_flags &= ~XVID_CPU_SSE2;                  cpu_flags &= ~(XVID_CPU_SSE2|XVID_CPU_SSE3|XVID_CPU_SSE41);
142  #endif  #endif
143    
144  #if defined(ARCH_IS_PPC)  #if defined(ARCH_IS_PPC)
145  #if defined(ARCH_IS_PPC_ALTIVEC)          if (!sigill_check(altivec_trigger))
146          cpu_flags |= XVID_CPU_ALTIVEC;          cpu_flags |= XVID_CPU_ALTIVEC;
147  #endif  #endif
 #endif  
148    
149          return cpu_flags;          return cpu_flags;
150  }  }
# Line 153  Line 166 
166    
167    
168  static  static
169  int xvid_init_init(XVID_INIT_PARAM * init_param)  int xvid_gbl_init(xvid_gbl_init_t * init)
170  {  {
171          int cpu_flags;          unsigned int cpu_flags;
   
         /* 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;  
172    
173          /* Do we have to force CPU features  ? */          if (XVID_VERSION_MAJOR(init->version) != 1) /* v1.x.x */
174          if ((init_param->cpu_flags & XVID_CPU_FORCE)) {                  return XVID_ERR_VERSION;
   
                 cpu_flags = init_param->cpu_flags;  
   
         } else {  
   
                 cpu_flags = detect_cpu_flags();  
         }  
   
         if ((init_param->cpu_flags & XVID_CPU_CHKONLY))  
         {  
                 init_param->cpu_flags = cpu_flags;  
                 return XVID_ERR_OK;  
         }  
   
         init_param->cpu_flags = cpu_flags;  
175    
176            cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
177    
178          /* Initialize the function pointers */          /* Initialize the function pointers */
179          idct_int32_init();          idct_int32_init();
# Line 191  Line 184 
184          idct = idct_int32;          idct = idct_int32;
185    
186          /* Only needed on PPC Altivec archs */          /* Only needed on PPC Altivec archs */
187          sadInit = 0;          sadInit = NULL;
188    
189          /* Restore FPU context : emms_c is a nop functions */          /* Restore FPU context : emms_c is a nop functions */
190          emms = emms_c;          emms = emms_c;
191    
192            /* 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          /* Quantization functions */          /* Quantization functions */
198          quant_intra   = quant_intra_c;          quant_h263_intra   = quant_h263_intra_c;
199          dequant_intra = dequant_intra_c;          quant_h263_inter   = quant_h263_inter_c;
200          quant_inter   = quant_inter_c;          dequant_h263_intra = dequant_h263_intra_c;
201          dequant_inter = dequant_inter_c;          dequant_h263_inter = dequant_h263_inter_c;
202    
203          quant4_intra   = quant4_intra_c;          quant_mpeg_intra   = quant_mpeg_intra_c;
204          dequant4_intra = dequant4_intra_c;          quant_mpeg_inter   = quant_mpeg_inter_c;
205          quant4_inter   = quant4_inter_c;          dequant_mpeg_intra = dequant_mpeg_intra_c;
206          dequant4_inter = dequant4_inter_c;          dequant_mpeg_inter = dequant_mpeg_inter_c;
207    
208          /* Block transfer related functions */          /* Block transfer related functions */
209          transfer_8to16copy = transfer_8to16copy_c;          transfer_8to16copy = transfer_8to16copy_c;
# Line 213  Line 211 
211          transfer_8to16sub  = transfer_8to16sub_c;          transfer_8to16sub  = transfer_8to16sub_c;
212          transfer_8to16subro  = transfer_8to16subro_c;          transfer_8to16subro  = transfer_8to16subro_c;
213          transfer_8to16sub2 = transfer_8to16sub2_c;          transfer_8to16sub2 = transfer_8to16sub2_c;
214            transfer_8to16sub2ro = transfer_8to16sub2ro_c;
215          transfer_16to8add  = transfer_16to8add_c;          transfer_16to8add  = transfer_16to8add_c;
216          transfer8x8_copy   = transfer8x8_copy_c;          transfer8x8_copy   = transfer8x8_copy_c;
217            transfer8x4_copy   = transfer8x4_copy_c;
218    
219          /* Interlacing functions */          /* Interlacing functions */
220          MBFieldTest = MBFieldTest_c;          MBFieldTest = MBFieldTest_c;
# Line 224  Line 224 
224          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;
225          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
226    
227            interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_c;
228            interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_c;
229            interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_c;
230    
231            interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_c;
232            interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_c;
233            interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_c;
234            interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_c;
235    
236          interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;          interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;
237          interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;          interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;
238          interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;          interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;
# Line 238  Line 247 
247          interpolate8x8_avg2 = interpolate8x8_avg2_c;          interpolate8x8_avg2 = interpolate8x8_avg2_c;
248          interpolate8x8_avg4 = interpolate8x8_avg4_c;          interpolate8x8_avg4 = interpolate8x8_avg4_c;
249    
250          /* reduced resoltuion */          /* postprocessing */
251          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;          image_brightness = image_brightness_c;
         add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;  
         vfilter_31 = xvid_VFilter_31_C;  
         hfilter_31 = xvid_HFilter_31_C;  
         filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;  
         filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;  
252    
253          /* Initialize internal colorspace transformation tables */          /* Initialize internal colorspace transformation tables */
254          colorspace_init();          colorspace_init();
# Line 253  Line 257 
257          yv12_to_yv12    = yv12_to_yv12_c;          yv12_to_yv12    = yv12_to_yv12_c;
258          rgb555_to_yv12  = rgb555_to_yv12_c;          rgb555_to_yv12  = rgb555_to_yv12_c;
259          rgb565_to_yv12  = rgb565_to_yv12_c;          rgb565_to_yv12  = rgb565_to_yv12_c;
260            rgb_to_yv12     = rgb_to_yv12_c;
261          bgr_to_yv12     = bgr_to_yv12_c;          bgr_to_yv12     = bgr_to_yv12_c;
262          bgra_to_yv12    = bgra_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
263          abgr_to_yv12    = abgr_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
264          rgba_to_yv12    = rgba_to_yv12_c;          rgba_to_yv12    = rgba_to_yv12_c;
265            argb_to_yv12    = argb_to_yv12_c;
266          yuyv_to_yv12    = yuyv_to_yv12_c;          yuyv_to_yv12    = yuyv_to_yv12_c;
267          uyvy_to_yv12    = uyvy_to_yv12_c;          uyvy_to_yv12    = uyvy_to_yv12_c;
268    
# Line 266  Line 272 
272          bgrai_to_yv12   = bgrai_to_yv12_c;          bgrai_to_yv12   = bgrai_to_yv12_c;
273          abgri_to_yv12   = abgri_to_yv12_c;          abgri_to_yv12   = abgri_to_yv12_c;
274          rgbai_to_yv12   = rgbai_to_yv12_c;          rgbai_to_yv12   = rgbai_to_yv12_c;
275            argbi_to_yv12   = argbi_to_yv12_c;
276          yuyvi_to_yv12   = yuyvi_to_yv12_c;          yuyvi_to_yv12   = yuyvi_to_yv12_c;
277          uyvyi_to_yv12   = uyvyi_to_yv12_c;          uyvyi_to_yv12   = uyvyi_to_yv12_c;
278    
   
279          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
280          yv12_to_rgb555  = yv12_to_rgb555_c;          yv12_to_rgb555  = yv12_to_rgb555_c;
281          yv12_to_rgb565  = yv12_to_rgb565_c;          yv12_to_rgb565  = yv12_to_rgb565_c;
282            yv12_to_rgb     = yv12_to_rgb_c;
283          yv12_to_bgr     = yv12_to_bgr_c;          yv12_to_bgr     = yv12_to_bgr_c;
284          yv12_to_bgra    = yv12_to_bgra_c;          yv12_to_bgra    = yv12_to_bgra_c;
285          yv12_to_abgr    = yv12_to_abgr_c;          yv12_to_abgr    = yv12_to_abgr_c;
286          yv12_to_rgba    = yv12_to_rgba_c;          yv12_to_rgba    = yv12_to_rgba_c;
287            yv12_to_argb    = yv12_to_argb_c;
288          yv12_to_yuyv    = yv12_to_yuyv_c;          yv12_to_yuyv    = yv12_to_yuyv_c;
289          yv12_to_uyvy    = yv12_to_uyvy_c;          yv12_to_uyvy    = yv12_to_uyvy_c;
290    
# Line 286  Line 294 
294          yv12_to_bgrai   = yv12_to_bgrai_c;          yv12_to_bgrai   = yv12_to_bgrai_c;
295          yv12_to_abgri   = yv12_to_abgri_c;          yv12_to_abgri   = yv12_to_abgri_c;
296          yv12_to_rgbai   = yv12_to_rgbai_c;          yv12_to_rgbai   = yv12_to_rgbai_c;
297            yv12_to_argbi   = yv12_to_argbi_c;
298          yv12_to_yuyvi   = yv12_to_yuyvi_c;          yv12_to_yuyvi   = yv12_to_yuyvi_c;
299          yv12_to_uyvyi   = yv12_to_uyvyi_c;          yv12_to_uyvyi   = yv12_to_uyvyi_c;
300    
# Line 297  Line 306 
306          sad8bi   = sad8bi_c;          sad8bi   = sad8bi_c;
307          dev16    = dev16_c;          dev16    = dev16_c;
308          sad16v   = sad16v_c;          sad16v   = sad16v_c;
309            sse8_16bit = sse8_16bit_c;
310            sse8_8bit  = sse8_8bit_c;
311    
312  /*      Halfpel8_Refine = Halfpel8_Refine_c; */          init_GMC(cpu_flags);
313    
314  #if defined(ARCH_IS_IA32)  #if defined(ARCH_IS_IA32)
315    
         if ((cpu_flags & XVID_CPU_ASM))  
         {  
                 vfilter_31 = xvid_VFilter_31_x86;  
                 hfilter_31 = xvid_HFilter_31_x86;  
         }  
   
316          if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||          if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
317                  (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||                  (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
318                  (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))                  (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2) ||
319            (cpu_flags & XVID_CPU_SSE3) || (cpu_flags & XVID_CPU_SSE41))
320          {          {
321                  /* Restore FPU context : emms_c is a nop functions */                  /* Restore FPU context : emms_c is a nop functions */
322                  emms = emms_mmx;                  emms = emms_mmx;
# Line 319  Line 325 
325          if ((cpu_flags & XVID_CPU_MMX)) {          if ((cpu_flags & XVID_CPU_MMX)) {
326    
327                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
328                  fdct = fdct_mmx;                  fdct = fdct_mmx_skal;
329                  idct = idct_mmx;                  idct = idct_mmx;
330    
331                    /* Qpel stuff */
332                    xvid_QP_Funcs = &xvid_QP_Funcs_mmx;
333                    xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;
334    
335                  /* Quantization related functions */                  /* Quantization related functions */
336                  quant_intra   = quant_intra_mmx;                  quant_h263_intra   = quant_h263_intra_mmx;
337                  dequant_intra = dequant_intra_mmx;                  quant_h263_inter   = quant_h263_inter_mmx;
338                  quant_inter   = quant_inter_mmx;                  dequant_h263_intra = dequant_h263_intra_mmx;
339                  dequant_inter = dequant_inter_mmx;                  dequant_h263_inter = dequant_h263_inter_mmx;
340    
341                  quant4_intra   = quant4_intra_mmx;                  quant_mpeg_intra   = quant_mpeg_intra_mmx;
342                  dequant4_intra = dequant4_intra_mmx;                  quant_mpeg_inter   = quant_mpeg_inter_mmx;
343                  quant4_inter   = quant4_inter_mmx;                  dequant_mpeg_intra = dequant_mpeg_intra_mmx;
344                  dequant4_inter = dequant4_inter_mmx;                  dequant_mpeg_inter = dequant_mpeg_inter_mmx;
345    
346                  /* Block related functions */                  /* Block related functions */
347                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
# Line 341  Line 351 
351                  transfer_8to16sub2 = transfer_8to16sub2_mmx;                  transfer_8to16sub2 = transfer_8to16sub2_mmx;
352                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
353                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
354                    transfer8x4_copy   = transfer8x4_copy_mmx;
355    
356                  /* Interlacing Functions */                  /* Interlacing Functions */
357                  MBFieldTest = MBFieldTest_mmx;                  MBFieldTest = MBFieldTest_mmx;
# Line 350  Line 361 
361                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;
362                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
363    
364                    interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_mmx;
365                    interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_mmx;
366                    interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_mmx;
367    
368                    interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_mmx;
369                    interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_mmx;
370                    interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_mmx;
371                    interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_mmx;
372    
373                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
374                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
375    
376                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
377                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
378    
379                  /* reduced resolution */                  /* postprocessing */
380                  copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;                  image_brightness = image_brightness_mmx;
                 add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;  
                 hfilter_31 = xvid_HFilter_31_mmx;  
                 filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_mmx;  
                 filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_mmx;  
381    
382                  /* image input xxx_to_yv12 related functions */                  /* image input xxx_to_yv12 related functions */
383                  yv12_to_yv12  = yv12_to_yv12_mmx;                  yv12_to_yv12  = yv12_to_yv12_mmx;
384                  bgr_to_yv12   = bgr_to_yv12_mmx;                  bgr_to_yv12   = bgr_to_yv12_mmx;
385                    rgb_to_yv12   = rgb_to_yv12_mmx;
386                  bgra_to_yv12  = bgra_to_yv12_mmx;                  bgra_to_yv12  = bgra_to_yv12_mmx;
387                    rgba_to_yv12  = rgba_to_yv12_mmx;
388                  yuyv_to_yv12  = yuyv_to_yv12_mmx;                  yuyv_to_yv12  = yuyv_to_yv12_mmx;
389                  uyvy_to_yv12  = uyvy_to_yv12_mmx;                  uyvy_to_yv12  = uyvy_to_yv12_mmx;
390    
# Line 387  Line 405 
405                  sad8bi  = sad8bi_mmx;                  sad8bi  = sad8bi_mmx;
406                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
407                  sad16v   = sad16v_mmx;                  sad16v   = sad16v_mmx;
408                    sse8_16bit = sse8_16bit_mmx;
409                    sse8_8bit  = sse8_8bit_mmx;
410          }          }
411    
412          /* these 3dnow functions are faster than mmx, but slower than xmm. */          /* these 3dnow functions are faster than mmx, but slower than xmm. */
# Line 405  Line 425 
425    
426          if ((cpu_flags & XVID_CPU_MMXEXT)) {          if ((cpu_flags & XVID_CPU_MMXEXT)) {
427    
428                  /* Inverse DCT */                  /* DCT */
429                    fdct = fdct_xmm_skal;
430                  idct = idct_xmm;                  idct = idct_xmm;
431    
432                  /* Interpolation */                  /* Interpolation */
# Line 413  Line 434 
434                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;
435                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
436    
437                  /* reduced resolution */                  interpolate8x4_halfpel_h  = interpolate8x4_halfpel_h_xmm;
438                  copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_xmm;                  interpolate8x4_halfpel_v  = interpolate8x4_halfpel_v_xmm;
439                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;                  interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_xmm;
440    
441                    interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_xmm;
442                    interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_xmm;
443                    interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_xmm;
444                    interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_xmm;
445    
446                  /* Quantization */                  /* Quantization */
447                  quant4_intra = quant4_intra_xmm;                  quant_mpeg_inter = quant_mpeg_inter_xmm;
                 quant4_inter = quant4_inter_xmm;  
448    
449                  dequant_intra = dequant_intra_xmm;                  dequant_h263_intra = dequant_h263_intra_xmm;
450                  dequant_inter = dequant_inter_xmm;                  dequant_h263_inter = dequant_h263_inter_xmm;
451    
452                  /* Buffer transfer */                  /* Buffer transfer */
453                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
454                    transfer_8to16sub2ro = transfer_8to16sub2ro_xmm;
455    
456                  /* Colorspace transformation */                  /* Colorspace transformation */
457                  yv12_to_yv12  = yv12_to_yv12_xmm;                  yv12_to_yv12  = yv12_to_yv12_xmm;
# Line 447  Line 473 
473                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
474                  interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dn;                  interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dn;
475                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
476    
477                    interpolate8x4_halfpel_h = interpolate8x4_halfpel_h_3dn;
478                    interpolate8x4_halfpel_v = interpolate8x4_halfpel_v_3dn;
479                    interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_3dn;
480          }          }
481    
482          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
483    
                 /* Inverse DCT */  
                 idct =  idct_3dne;  
   
484                  /* Buffer transfer */                  /* Buffer transfer */
485                  transfer_8to16copy =  transfer_8to16copy_3dne;                  transfer_8to16copy =  transfer_8to16copy_3dne;
486                  transfer_16to8copy = transfer_16to8copy_3dne;                  transfer_16to8copy = transfer_16to8copy_3dne;
487                  transfer_8to16sub =  transfer_8to16sub_3dne;                  transfer_8to16sub =  transfer_8to16sub_3dne;
488                  transfer_8to16subro =  transfer_8to16subro_3dne;                  transfer_8to16subro =  transfer_8to16subro_3dne;
                 transfer_8to16sub2 =  transfer_8to16sub2_3dne;  
489                  transfer_16to8add = transfer_16to8add_3dne;                  transfer_16to8add = transfer_16to8add_3dne;
490                  transfer8x8_copy = transfer8x8_copy_3dne;                  transfer8x8_copy = transfer8x8_copy_3dne;
491                    transfer8x4_copy = transfer8x4_copy_3dne;
492    
493                    if ((cpu_flags & XVID_CPU_MMXEXT)) {
494                            /* Inverse DCT */
495                            idct =  idct_3dne;
496    
497                            /* Buffer transfer */
498                            transfer_8to16sub2 =  transfer_8to16sub2_3dne;
499    
500                            /* Interpolation */
501                            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
502                            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
503                            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
504    
505                            interpolate8x4_halfpel_h = interpolate8x4_halfpel_h_3dne;
506                            interpolate8x4_halfpel_v = interpolate8x4_halfpel_v_3dne;
507                            interpolate8x4_halfpel_hv = interpolate8x4_halfpel_hv_3dne;
508    
509                  /* Quantization */                  /* Quantization */
510                  dequant4_intra = dequant4_intra_3dne;                          quant_h263_intra = quant_h263_intra_3dne;               /* cmov only */
511                  dequant4_inter = dequant4_inter_3dne;                          quant_h263_inter = quant_h263_inter_3dne;
512                  quant_intra = quant_intra_3dne;                          dequant_mpeg_intra = dequant_mpeg_intra_3dne;   /* cmov only */
513                  quant_inter = quant_inter_3dne;                          dequant_mpeg_inter = dequant_mpeg_inter_3dne;
514                  dequant_intra = dequant_intra_3dne;                          dequant_h263_intra = dequant_h263_intra_3dne;
515                  dequant_inter = dequant_inter_3dne;                          dequant_h263_inter = dequant_h263_inter_3dne;
516    
517                  /* ME functions */                  /* ME functions */
518                  calc_cbp = calc_cbp_3dne;                  calc_cbp = calc_cbp_3dne;
519    
520                  sad16 = sad16_3dne;                  sad16 = sad16_3dne;
521                  sad8 = sad8_3dne;                  sad8 = sad8_3dne;
522                  sad16bi = sad16bi_3dne;                  sad16bi = sad16bi_3dne;
523                  sad8bi = sad8bi_3dne;                  sad8bi = sad8bi_3dne;
524                  dev16 = dev16_3dne;                  dev16 = dev16_3dne;
   
                 /* Interpolation */  
                 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;  
                 interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;  
                 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;  
525          }          }
526            }
527    
528          if ((cpu_flags & XVID_CPU_SSE2)) {          if ((cpu_flags & XVID_CPU_SSE2)) {
529    
530                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
531    
532                  /* Quantization */                  /* Quantization */
533                  quant_intra   = quant_intra_sse2;                  quant_h263_intra   = quant_h263_intra_sse2;
534                  dequant_intra = dequant_intra_sse2;                  quant_h263_inter   = quant_h263_inter_sse2;
535                  quant_inter   = quant_inter_sse2;                  dequant_h263_intra = dequant_h263_intra_sse2;
536                  dequant_inter = dequant_inter_sse2;                  dequant_h263_inter = dequant_h263_inter_sse2;
537    
538  #if defined(EXPERIMENTAL_SSE2_CODE)                  /* SAD operators */
                 /* ME; slower than xmm */  
539                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
540                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
541  #endif  
542                  /* Forward and Inverse DCT */                  /* DCT operators */
543                  idct  = idct_sse2;                  fdct = fdct_sse2_skal;
544                  fdct = fdct_sse2;          idct = idct_sse2_skal;   /* Is now IEEE1180 and Walken compliant. */
545    
546                    /* postprocessing */
547                    image_brightness = image_brightness_sse2;
548          }          }
549  #endif  
550            if ((cpu_flags & XVID_CPU_SSE3)) {
551    
552                    /* SAD operators */
553                    sad16    = sad16_sse3;
554                    dev16    = dev16_sse3;
555            }
556    
557    #endif /* ARCH_IS_IA32 */
558    
559  #if defined(ARCH_IS_IA64)  #if defined(ARCH_IS_IA64)
560          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
# Line 520  Line 569 
569            sad8 = sad8_ia64;            sad8 = sad8_ia64;
570            dev16 = dev16_ia64;            dev16 = dev16_ia64;
571  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */
572            quant_intra = quant_intra_ia64;            quant_h263_intra = quant_h263_intra_ia64;
573            dequant_intra = dequant_intra_ia64;            quant_h263_inter = quant_h263_inter_ia64;
574            quant_inter = quant_inter_ia64;            dequant_h263_intra = dequant_h263_intra_ia64;
575            dequant_inter = dequant_inter_ia64;            dequant_h263_inter = dequant_h263_inter_ia64;
576            transfer_8to16copy = transfer_8to16copy_ia64;            transfer_8to16copy = transfer_8to16copy_ia64;
577            transfer_16to8copy = transfer_16to8copy_ia64;            transfer_16to8copy = transfer_16to8copy_ia64;
578            transfer_8to16sub = transfer_8to16sub_ia64;            transfer_8to16sub = transfer_8to16sub_ia64;
579            transfer_8to16sub2 = transfer_8to16sub2_ia64;            transfer_8to16sub2 = transfer_8to16sub2_ia64;
580            transfer_16to8add = transfer_16to8add_ia64;            transfer_16to8add = transfer_16to8add_ia64;
581            transfer8x8_copy = transfer8x8_copy_ia64;            transfer8x8_copy = transfer8x8_copy_ia64;
           DPRINTF(DPRINTF_DEBUG, "Using IA-64 assembler routines.");  
582          }          }
583  #endif  #endif
584    
585  #if defined(ARCH_IS_PPC)  #if defined(ARCH_IS_PPC)
586          if ((cpu_flags & XVID_CPU_ASM))          if ((cpu_flags & XVID_CPU_ALTIVEC)) {
587          {            /* sad operators */
588                  calc_cbp = calc_cbp_ppc;                    sad16 = sad16_altivec_c;
589          }                    sad16bi = sad16bi_altivec_c;
590                      sad8 = sad8_altivec_c;
591          if ((cpu_flags & XVID_CPU_ALTIVEC))                    dev16 = dev16_altivec_c;
592          {  
593                  calc_cbp = calc_cbp_altivec;            sse8_16bit = sse8_16bit_altivec_c;
594                  fdct = fdct_altivec;  
595                  idct = idct_altivec;            /* mem transfer */
596                  sadInit = sadInit_altivec;            transfer_8to16copy = transfer_8to16copy_altivec_c;
597                  sad16 = sad16_altivec;            transfer_16to8copy = transfer_16to8copy_altivec_c;
598                  sad8 = sad8_altivec;            transfer_8to16sub = transfer_8to16sub_altivec_c;
599                  dev16 = dev16_altivec;            transfer_8to16subro = transfer_8to16subro_altivec_c;
600          }            transfer_8to16sub2 = transfer_8to16sub2_altivec_c;
601  #endif            transfer_16to8add = transfer_16to8add_altivec_c;
602              transfer8x8_copy = transfer8x8_copy_altivec_c;
         return XVID_ERR_OK;  
 }  
   
   
603    
604  static int            /* Inverse DCT */
605  xvid_init_convert(XVID_INIT_CONVERTINFO* convert)            idct = idct_altivec_c;
 {  
 /*  
         const int flip1 =  
                 (convert->input.colorspace & XVID_CSP_VFLIP) ^  
                 (convert->output.colorspace & XVID_CSP_VFLIP);  
 */  
         const int width = convert->width;  
         const int height = convert->height;  
         const int width2 = convert->width/2;  
         const int height2 = convert->height/2;  
         IMAGE img;  
606    
607          switch (convert->input.colorspace & ~XVID_CSP_VFLIP)            /* Interpolation */
608          {            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_altivec_c;
609                  case XVID_CSP_YV12 :            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_altivec_c;
610                          img.y = convert->input.y;            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_altivec_c;
611                          img.v = (uint8_t*)convert->input.y + width*height;  
612                          img.u = (uint8_t*)convert->input.y + width*height + width2*height2;            interpolate8x8_avg2 = interpolate8x8_avg2_altivec_c;
613                          image_output(&img, width, height, width,            interpolate8x8_avg4 = interpolate8x8_avg4_altivec_c;
614                                                  convert->output.y, convert->output.y_stride,  
615                                                  convert->output.colorspace, convert->interlacing);                    interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_altivec_c;
616                          break;                    interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_altivec_c;
617                      interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_altivec_c;
618                      interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_altivec_c;
619    
620              /* Colorspace conversion */
621              bgra_to_yv12 = bgra_to_yv12_altivec_c;
622              abgr_to_yv12 = abgr_to_yv12_altivec_c;
623              rgba_to_yv12 = rgba_to_yv12_altivec_c;
624              argb_to_yv12 = argb_to_yv12_altivec_c;
625    
626                  default :            yuyv_to_yv12 = yuyv_to_yv12_altivec_c;
627                          return XVID_ERR_FORMAT;            uyvy_to_yv12 = uyvy_to_yv12_altivec_c;
         }  
628    
629              yv12_to_yuyv = yv12_to_yuyv_altivec_c;
630              yv12_to_uyvy = yv12_to_uyvy_altivec_c;
631    
632          emms();            /* Quantization */
633          return XVID_ERR_OK;            quant_h263_intra = quant_h263_intra_altivec_c;
634              quant_h263_inter = quant_h263_inter_altivec_c;
635              dequant_h263_intra = dequant_h263_intra_altivec_c;
636              dequant_h263_inter = dequant_h263_inter_altivec_c;
637    
638                      dequant_mpeg_intra = dequant_mpeg_intra_altivec_c;
639                      dequant_mpeg_inter = dequant_mpeg_inter_altivec_c;
640    
641                      /* Qpel stuff */
642                      xvid_QP_Funcs = &xvid_QP_Funcs_Altivec_C;
643                      xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_Altivec_C;
644  }  }
645    #endif
646    
647    #if defined(ARCH_IS_X86_64)
648            /* For now, only XVID_CPU_ASM is looked for, so user can still
649             * disable asm usage the usual way. When Intel EMT64 cpus will
650             * be out, maybe we'll have to check more precisely what cpu
651             * features there really are. */
652            if (cpu_flags & XVID_CPU_ASM) {
653                    /* SIMD state flusher */
654                    emms = emms_mmx;
655    
656                    /* DCT operators */
657                    fdct = fdct_skal_x86_64;
658                    idct = idct_x86_64;
659    
660                    /* SAD operators */
661                    sad16      = sad16_x86_64;
662                    sad8       = sad8_x86_64;
663                    sad16bi    = sad16bi_x86_64;
664                    sad8bi     = sad8bi_x86_64;
665                    dev16      = dev16_x86_64;
666                    sad16v     = sad16v_x86_64;
667                    sse8_16bit = sse8_16bit_x86_64;
668                    sse8_8bit  = sse8_8bit_x86_64;
669    
670                    /* Interpolation operators */
671                    interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_x86_64;
672                    interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_x86_64;
673                    interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_x86_64;
674    
675                    interpolate8x8_halfpel_add = interpolate8x8_halfpel_add_x86_64;
676                    interpolate8x8_halfpel_h_add = interpolate8x8_halfpel_h_add_x86_64;
677                    interpolate8x8_halfpel_v_add = interpolate8x8_halfpel_v_add_x86_64;
678                    interpolate8x8_halfpel_hv_add = interpolate8x8_halfpel_hv_add_x86_64;
679    
680  void fill8(uint8_t * block, int size, int value)                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_x86_64;
681  {                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_x86_64;
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = value;  
 }  
682    
683  void fill16(int16_t * block, int size, int value)                  interpolate8x8_avg2 = interpolate8x8_avg2_x86_64;
684  {                  interpolate8x8_avg4 = interpolate8x8_avg4_x86_64;
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = value;  
 }  
685    
686  #define RANDOM(min,max) min + (rand() % (max-min))                  /* Quantization related functions */
687                    quant_h263_intra   = quant_h263_intra_x86_64;
688                    quant_h263_inter   = quant_h263_inter_x86_64;
689                    dequant_h263_intra = dequant_h263_intra_x86_64;
690                    dequant_h263_inter = dequant_h263_inter_x86_64;
691                    /*quant_mpeg_intra   = quant_mpeg_intra_x86_64; fix me! */
692                    quant_mpeg_inter   = quant_mpeg_inter_x86_64;
693                    dequant_mpeg_intra   = dequant_mpeg_intra_x86_64;
694                    dequant_mpeg_inter   = dequant_mpeg_inter_x86_64;
695    
696  void random8(uint8_t * block, int size, int min, int max)                  /* Block related functions */
697  {                  transfer_8to16copy  = transfer_8to16copy_x86_64;
698          int i;                  transfer_16to8copy  = transfer_16to8copy_x86_64;
699          for (i = 0; i < size; i++)                  transfer_8to16sub   = transfer_8to16sub_x86_64;
700                  block[i] = RANDOM(min,max);                  transfer_8to16subro = transfer_8to16subro_x86_64;
701  }                  transfer_8to16sub2  = transfer_8to16sub2_x86_64;
702                    transfer_8to16sub2ro= transfer_8to16sub2ro_x86_64;
703                    transfer_16to8add   = transfer_16to8add_x86_64;
704                    transfer8x8_copy    = transfer8x8_copy_x86_64;
705    
706                    /* Qpel stuff */
707                    xvid_QP_Funcs = &xvid_QP_Funcs_x86_64;
708                    xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_x86_64;
709    
710  void random16(int16_t * block, int size, int min, int max)                  /* Interlacing Functions */
711  {                  MBFieldTest = MBFieldTest_x86_64;
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = RANDOM(min,max);  
712  }  }
713    #endif
714    
715  int compare16(const int16_t * blockA, const int16_t * blockB, int size)  #if defined(_DEBUG)
716  {      xvid_debug = init->debug;
717          int i;  #endif
         for (i = 0; i < size; i++)  
                 if (blockA[i] != blockB[i])  
                         return 1;  
   
         return 0;  
 }  
718    
719  int diff16(const int16_t * blockA, const int16_t * blockB, int size)      return(0);
 {  
         int i, diff = 0;  
         for (i = 0; i < size; i++)  
                 diff += ABS(blockA[i]-blockB[i]);  
         return diff;  
720  }  }
721    
722    
723  #define XVID_TEST_RANDOM        0x00000001      /* random input data */  static int
724  #define XVID_TEST_VERBOSE       0x00000002      /* verbose error output */  xvid_gbl_info(xvid_gbl_info_t * info)
   
   
 #define TEST_FORWARD    0x00000001      /* intra */  
 #define TEST_FDCT  (TEST_FORWARD)  
 #define TEST_IDCT  (0)  
   
 static int test_transform(void * funcA, void * funcB, const char * nameB,  
                                    int test, int flags)  
 {  
         int i;  
         int64_t timeSTART;  
         int64_t timeA = 0;  
         int64_t timeB = 0;  
         DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);  
         DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);  
         int min, max;  
         int count = 0;  
   
         int tmp;  
         int min_error = 0x10000*64;  
         int max_error = 0;  
   
   
         if ((test & TEST_FORWARD))      /* forward */  
725          {          {
726                  min = -256;          if (XVID_VERSION_MAJOR(info->version) != 1) /* v1.x.x */
727                  max = 255;                  return XVID_ERR_VERSION;
         }else{          /* inverse */  
                 min = -2048;  
                 max = 2047;  
         }  
728    
729          for (i = 0; i < 64*64; i++)          info->actual_version = XVID_VERSION;
730          {          info->build = "xvid-1.2.0-dev";
731                  if ((flags & XVID_TEST_RANDOM))          info->cpu_flags = detect_cpu_flags();
732                  {    info->num_threads = 0;
                         random16(arrayA, 64, min, max);  
                 }else{  
                         fill16(arrayA, 64, i);  
                 }  
                 memcpy(arrayB, arrayA, 64*sizeof(int16_t));  
733    
734                  if ((test & TEST_FORWARD))  #if defined(WIN32)
735                  {                  {
736                          timeSTART = read_counter();      DWORD dwProcessAffinityMask, dwSystemAffinityMask;
737                          ((fdctFunc*)funcA)(arrayA);      if (GetProcessAffinityMask(GetCurrentProcess(), &dwProcessAffinityMask, &dwSystemAffinityMask)) {
738                          timeA += read_counter() - timeSTART;        int i;
739          for(i=0; i<32; i++) {
740                          timeSTART = read_counter();          if ((dwProcessAffinityMask & (1<<i)))
741                          ((fdctFunc*)funcB)(arrayB);            info->num_threads++;
                         timeB += read_counter() - timeSTART;  
742                  }                  }
                 else  
                 {  
                         timeSTART = read_counter();  
                         ((idctFunc*)funcA)(arrayA);  
                         timeA += read_counter() - timeSTART;  
   
                         timeSTART = read_counter();  
                         ((idctFunc*)funcB)(arrayB);  
                         timeB += read_counter() - timeSTART;  
743                  }                  }
   
                 tmp = diff16(arrayA, arrayB, 64) / 64;  
                 if (tmp > max_error)  
                         max_error = tmp;  
                 if (tmp < min_error)  
                         min_error = tmp;  
   
                 count++;  
744          }          }
745    #endif
         /* print the "average difference" of best/worst transforms */  
         printf("%s:\t%i\t(min_error:%i, max_error:%i)\n", nameB, (int)(timeB / count), min_error, max_error);  
746    
747          return 0;          return 0;
748  }  }
749    
750    
751  #define TEST_QUANT      0x00000001      /* forward quantization */  static int
752  #define TEST_INTRA      0x00000002      /* intra */  xvid_gbl_convert(xvid_gbl_convert_t* convert)
 #define TEST_QUANT_INTRA        (TEST_QUANT|TEST_INTRA)  
 #define TEST_QUANT_INTER        (TEST_QUANT)  
 #define TEST_DEQUANT_INTRA      (TEST_INTRA)  
 #define TEST_DEQUANT_INTER      (0)  
   
 static int test_quant(void * funcA, void * funcB, const char * nameB,  
                            int test, int flags)  
 {  
         int q,i;  
         int64_t timeSTART;  
         int64_t timeA = 0;  
         int64_t timeB = 0;  
         int retA = 0, retB = 0;  
         DECLARE_ALIGNED_MATRIX(arrayX, 1, 64, int16_t, CACHE_LINE);  
         DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);  
         DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);  
         int min, max;  
         int count = 0;  
         int errors = 0;  
   
         if ((test & TEST_QUANT))        /* quant */  
         {  
                 min = -2048;  
                 max = 2047;  
         }else{          /* dequant */  
                 min = -256;  
                 max = 255;  
         }  
   
         for (q = 1; q <= 31; q++)       /* quantizer */  
         {  
                 for (i = min; i < max; i++)     /* input coeff */  
                 {  
                         if ((flags & XVID_TEST_RANDOM))  
                         {  
                                 random16(arrayX, 64, min, max);  
                         }else{  
                                 fill16(arrayX, 64, i);  
                         }  
   
                         if ((test & TEST_INTRA))        /* intra */  
753                          {                          {
754                                  timeSTART = read_counter();          int width;
755                                  ((quanth263_intraFunc*)funcA)(arrayA, arrayX, q, q);          int height;
756                                  timeA += read_counter() - timeSTART;          int width2;
757            int height2;
758            IMAGE img;
759    
760                                  timeSTART = read_counter();          if (XVID_VERSION_MAJOR(convert->version) != 1)   /* v1.x.x */
761                                  ((quanth263_intraFunc*)funcB)(arrayB, arrayX, q, q);                return XVID_ERR_VERSION;
                                 timeB += read_counter() - timeSTART;  
                         }  
                         else    /* inter */  
                         {  
                                 timeSTART = read_counter();  
                                 retA = ((quanth263_interFunc*)funcA)(arrayA, arrayX, q);  
                                 timeA += read_counter() - timeSTART;  
762    
763                                  timeSTART = read_counter();  #if 0
764                                  retB = ((quanth263_interFunc*)funcB)(arrayB, arrayX, q);          const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
765                                  timeB += read_counter() - timeSTART;  #endif
766                          }          width = convert->width;
767            height = convert->height;
768            width2 = convert->width/2;
769            height2 = convert->height/2;
770    
771                          /* compare return value from quant_inter, and compare (de)quantiz'd arrays */          switch (convert->input.csp & ~XVID_CSP_VFLIP)
                         if ( ((test&TEST_QUANT) && !(test&TEST_INTRA) && retA != retB ) ||  
                                 compare16(arrayA, arrayB, 64))  
772                          {                          {
773                                  errors++;                  case XVID_CSP_YV12 :
774                                  if ((flags & XVID_TEST_VERBOSE))                          img.y = convert->input.plane[0];
775                                          printf("%s error: q=%i, i=%i\n", nameB, q, i);                          img.v = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height;
776                          }                          img.u = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height + (convert->input.stride[0]/2)*height2;
777                            image_output(&img, width, height, width,
778                                                    (uint8_t**)convert->output.plane, convert->output.stride,
779                                                    convert->output.csp, convert->interlacing);
780                            break;
781    
782                          count++;                  default :
783                  }                          return XVID_ERR_FORMAT;
784          }          }
785    
         printf("%s:\t%i", nameB, (int)(timeB / count));  
         if (errors>0)  
                 printf("\t(%i errors out of %i)", errors, count);  
         printf("\n");  
786    
787            emms();
788          return 0;          return 0;
789  }  }
790    
791    /*****************************************************************************
792     * XviD Global Entry point
793  int xvid_init_test(int flags)   *
794  {   * Well this function initialize all internal function pointers according
795          int cpu_flags;   * to the CPU features forced by the library client or autodetected (depending
796     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
797          srand(time(0));   * image colorspace transformation tables.
798     *
799          printf("xvid_init_test\n");   ****************************************************************************/
   
 #if defined(ARCH_IS_IA32)  
         cpu_flags = detect_cpu_flags();  
         idct_int32_init();  
         emms_mmx();  
   
         printf("--- fdct ---\n");  
                 test_transform(fdct_int32, fdct_int32, "c", TEST_FDCT, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_transform(fdct_int32, fdct_mmx, "mmx", TEST_FDCT, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_transform(fdct_int32, fdct_sse2, "sse2", TEST_FDCT, flags);  
   
         printf("\n--- idct ---\n");  
                 test_transform(idct_int32, idct_int32, "c", TEST_IDCT, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_transform(idct_int32, idct_mmx, "mmx", TEST_IDCT, flags);  
         if (cpu_flags & XVID_CPU_MMXEXT)  
                 test_transform(idct_int32, idct_xmm, "xmm", TEST_IDCT, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_transform(idct_int32, idct_3dne, "3dne", TEST_IDCT, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_transform(idct_int32, idct_sse2, "sse2", TEST_IDCT, flags);  
   
         printf("\n--- quant intra ---\n");  
                 test_quant(quant_intra_c, quant_intra_c, "c", TEST_QUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(quant_intra_c, quant_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(quant_intra_c, quant_intra_3dne, "3dne", TEST_QUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_quant(quant_intra_c, quant_intra_sse2, "sse2", TEST_QUANT_INTRA, flags);  
   
         printf("\n--- quant inter ---\n");  
                 test_quant(quant_inter_c, quant_inter_c, "c", TEST_QUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(quant_inter_c, quant_inter_mmx, "mmx", TEST_QUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(quant_inter_c, quant_inter_3dne, "3dne", TEST_QUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_quant(quant_inter_c, quant_inter_sse2, "sse2", TEST_QUANT_INTER, flags);  
   
         printf("\n--- dequant intra ---\n");  
                 test_quant(dequant_intra_c, dequant_intra_c, "c", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(dequant_intra_c, dequant_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMXEXT)  
                 test_quant(dequant_intra_c, dequant_intra_xmm, "xmm", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(dequant_intra_c, dequant_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_quant(dequant_intra_c, dequant_intra_sse2, "sse2", TEST_DEQUANT_INTRA, flags);  
   
         printf("\n--- dequant inter ---\n");  
                 test_quant(dequant_inter_c, dequant_inter_c, "c", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(dequant_inter_c, dequant_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMXEXT)  
                 test_quant(dequant_inter_c, dequant_inter_xmm, "xmm", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(dequant_inter_c, dequant_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_SSE2)  
                 test_quant(dequant_inter_c, dequant_inter_sse2, "sse2", TEST_DEQUANT_INTER, flags);  
   
         printf("\n--- quant4_intra ---\n");  
                 test_quant(quant4_intra_c, quant4_intra_c, "c", TEST_QUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(quant4_intra_c, quant4_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMXEXT)  
                 test_quant(quant4_intra_c, quant4_intra_xmm, "xmm", TEST_QUANT_INTRA, flags);  
   
         printf("\n--- quant4_inter ---\n");  
                 test_quant(quant4_inter_c, quant4_inter_c, "c", TEST_QUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(quant4_inter_c, quant4_inter_mmx, "mmx", TEST_QUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMXEXT)  
                 test_quant(quant4_inter_c, quant4_inter_xmm, "xmm", TEST_QUANT_INTER, flags);  
   
         printf("\n--- dequant4_intra ---\n");  
                 test_quant(dequant4_intra_c, dequant4_intra_c, "c", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(dequant4_intra_c, dequant4_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(dequant4_intra_c, dequant4_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);  
   
         printf("\n--- dequant4_inter ---\n");  
                 test_quant(dequant4_inter_c, dequant4_inter_c, "c", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_MMX)  
                 test_quant(dequant4_inter_c, dequant4_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);  
         if (cpu_flags & XVID_CPU_3DNOWEXT)  
                 test_quant(dequant4_inter_c, dequant4_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);  
   
         emms_mmx();  
   
 #endif  
   
         return XVID_ERR_OK;  
 }  
800    
801    
802  int  int
803  xvid_init(void *handle,  xvid_global(void *handle,
804                    int opt,                    int opt,
805                    void *param1,                    void *param1,
806                    void *param2)                    void *param2)
807  {  {
808          switch(opt)          switch(opt)
809          {          {
810                  case XVID_INIT_INIT :                  case XVID_GBL_INIT :
811                          return xvid_init_init((XVID_INIT_PARAM*)param1);                          return xvid_gbl_init((xvid_gbl_init_t*)param1);
812    
813                  case XVID_INIT_CONVERT :          case XVID_GBL_INFO :
814                          return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);              return xvid_gbl_info((xvid_gbl_info_t*)param1);
815    
816                  case XVID_INIT_TEST :                  case XVID_GBL_CONVERT :
817                          return xvid_init_test((int)param1);                          return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
818    
819                  default :                  default :
820                          return XVID_ERR_FAIL;                          return XVID_ERR_FAIL;
# Line 955  Line 838 
838                          void *param2)                          void *param2)
839  {  {
840          switch (opt) {          switch (opt) {
         case XVID_DEC_DECODE:  
                 return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);  
   
841          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
842                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((xvid_dec_create_t *) param1);
843    
844          case XVID_DEC_DESTROY:          case XVID_DEC_DESTROY:
845                  return decoder_destroy((DECODER *) handle);                  return decoder_destroy((DECODER *) handle);
846    
847            case XVID_DEC_DECODE:
848                    return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
849    
850          default:          default:
851                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
852          }          }
# Line 989  Line 872 
872          switch (opt) {          switch (opt) {
873          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
874    
875                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)                  return enc_encode((Encoder *) handle,
876                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,                                                            (xvid_enc_frame_t *) param1,
877                                                            (XVID_ENC_STATS *) param2);                                                            (xvid_enc_stats_t *) param2);
                 else  
                 return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,  
                                                           (XVID_ENC_STATS *) param2);  
878    
879          case XVID_ENC_CREATE:          case XVID_ENC_CREATE:
880                  return encoder_create((XVID_ENC_PARAM *) param1);                  return enc_create((xvid_enc_create_t *) param1);
881    
882          case XVID_ENC_DESTROY:          case XVID_ENC_DESTROY:
883                  return encoder_destroy((Encoder *) handle);                  return enc_destroy((Encoder *) handle);
884    
885          default:          default:
886                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.74

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