[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.33.2.21, Fri Jan 3 16:25:14 2003 UTC revision 1.45.2.17, Mon Oct 27 01:03:06 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   *  This program is an implementation of a part of one or more MPEG-4   *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
  *  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 26  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   *   *
  ****************************************************************************/  
   
 /*****************************************************************************  
  *  
  *  History  
  *  
  *      - 23.06.2002    added XVID_CPU_CHKONLY  
  *  - 17.03.2002        Added interpolate8x8_halfpel_hv_xmm  
  *  - 22.12.2001  API change: added xvid_init() - Isibaar  
  *  - 16.12.2001        inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
  *  
22   *  $Id$   *  $Id$
23   *   *
24   ****************************************************************************/   ****************************************************************************/
# Line 57  Line 39 
39  #include "image/reduced.h"  #include "image/reduced.h"
40  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
41  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
42  #include "quant/quant_h263.h"  #include "quant/quant.h"
 #include "quant/quant_mpeg4.h"  
43  #include "motion/motion.h"  #include "motion/motion.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    
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    #if defined(_MSC_VER)
56  #include <windows.h>  #include <windows.h>
57  #else  #else
58  #include <signal.h>  #include <signal.h>
59  #include <setjmp.h>  #include <setjmp.h>
 #endif  
   
   
 #ifndef WIN32  
60    
61  static jmp_buf mark;  static jmp_buf mark;
62    
# Line 88  Line 69 
69    
70    
71  /*  /*
72  calls the funcptr, and returns whether SIGILL (illegal instruction) was signalled   * Calls the funcptr, and returns whether SIGILL (illegal instruction) was
73  return values:   * signalled
74  -1 : could not determine   *
75  0  : SIGILL was *not* signalled   * Return values:
76  1  : SIGILL was signalled   *  -1 : could not determine
77     *   0 : SIGILL was *not* signalled
78     *   1 : SIGILL was signalled
79  */  */
80    
81  int  int
82  sigill_check(void (*func)())  sigill_check(void (*func)())
83  {  {
84  #ifdef WIN32  #if defined(_MSC_VER)
85          _try {          _try {
86                  func();                  func();
87          }          }
# Line 132  Line 115 
115  }  }
116  #endif  #endif
117    
118    
119    /* detect cpu flags  */
120    static unsigned int
121    detect_cpu_flags()
122    {
123            /* enable native assembly optimizations by default */
124            unsigned int cpu_flags = XVID_CPU_ASM;
125    
126    #if defined(ARCH_IS_IA32)
127            cpu_flags |= check_cpu_features();
128            if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
129                    cpu_flags &= ~XVID_CPU_SSE;
130    
131            if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))
132                    cpu_flags &= ~XVID_CPU_SSE2;
133    #endif
134    
135    #if defined(ARCH_IS_PPC)
136    #if defined(ARCH_IS_PPC_ALTIVEC)
137            cpu_flags |= XVID_CPU_ALTIVEC;
138    #endif
139    #endif
140    
141            return cpu_flags;
142    }
143    
144    
145  /*****************************************************************************  /*****************************************************************************
146   * XviD Init Entry point   * XviD Init Entry point
147   *   *
# Line 148  Line 158 
158    
159    
160  static  static
161  int xvid_init_init(XVID_INIT_PARAM * init_param)  int xvid_gbl_init(xvid_gbl_init_t * init)
 {  
         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;  
   
         /* Do we have to force CPU features  ? */  
         if ((init_param->cpu_flags & XVID_CPU_FORCE)) {  
   
                 cpu_flags = init_param->cpu_flags;  
   
         } 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))  
162          {          {
163                  init_param->cpu_flags = cpu_flags;          unsigned int cpu_flags;
                 return XVID_ERR_OK;  
         }  
164    
165          init_param->cpu_flags = cpu_flags;          if (XVID_VERSION_MAJOR(init->version) != 1) /* v1.x.x */
166                    return XVID_ERR_VERSION;
167    
168            cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
169    
170          /* Initialize the function pointers */          /* Initialize the function pointers */
171          idct_int32_init();          idct_int32_init();
# Line 199  Line 181 
181          /* Restore FPU context : emms_c is a nop functions */          /* Restore FPU context : emms_c is a nop functions */
182          emms = emms_c;          emms = emms_c;
183    
184            /* Qpel stuff */
185            xvid_QP_Funcs = &xvid_QP_Funcs_C;
186            xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_C;
187            xvid_Init_QP();
188    
189          /* Quantization functions */          /* Quantization functions */
190          quant_intra   = quant_intra_c;          quant_h263_intra   = quant_h263_intra_c;
191          dequant_intra = dequant_intra_c;          quant_h263_inter   = quant_h263_inter_c;
192          quant_inter   = quant_inter_c;          dequant_h263_intra = dequant_h263_intra_c;
193          dequant_inter = dequant_inter_c;          dequant_h263_inter = dequant_h263_inter_c;
194    
195          quant4_intra   = quant4_intra_c;          quant_mpeg_intra   = quant_mpeg_intra_c;
196          dequant4_intra = dequant4_intra_c;          quant_mpeg_inter   = quant_mpeg_inter_c;
197          quant4_inter   = quant4_inter_c;          dequant_mpeg_intra = dequant_mpeg_intra_c;
198          dequant4_inter = dequant4_inter_c;          dequant_mpeg_inter = dequant_mpeg_inter_c;
199    
200          /* Block transfer related functions */          /* Block transfer related functions */
201          transfer_8to16copy = transfer_8to16copy_c;          transfer_8to16copy = transfer_8to16copy_c;
202          transfer_16to8copy = transfer_16to8copy_c;          transfer_16to8copy = transfer_16to8copy_c;
203          transfer_8to16sub  = transfer_8to16sub_c;          transfer_8to16sub  = transfer_8to16sub_c;
204            transfer_8to16subro  = transfer_8to16subro_c;
205          transfer_8to16sub2 = transfer_8to16sub2_c;          transfer_8to16sub2 = transfer_8to16sub2_c;
206          transfer_16to8add  = transfer_16to8add_c;          transfer_16to8add  = transfer_16to8add_c;
207          transfer8x8_copy   = transfer8x8_copy_c;          transfer8x8_copy   = transfer8x8_copy_c;
# Line 240  Line 228 
228          interpolate8x8_avg2 = interpolate8x8_avg2_c;          interpolate8x8_avg2 = interpolate8x8_avg2_c;
229          interpolate8x8_avg4 = interpolate8x8_avg4_c;          interpolate8x8_avg4 = interpolate8x8_avg4_c;
230    
231          /* reduced resoltuion */          /* reduced resolution */
   
232          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
233          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
 #ifdef ARCH_X86  
         vfilter_31 = xvid_VFilter_31_x86;  
         hfilter_31 = xvid_HFilter_31_x86;  
 #else  
234          vfilter_31 = xvid_VFilter_31_C;          vfilter_31 = xvid_VFilter_31_C;
235          hfilter_31 = xvid_HFilter_31_C;          hfilter_31 = xvid_HFilter_31_C;
 #endif  
236          filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;          filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;
237          filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;          filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;
238    
# Line 306  Line 288 
288          dev16    = dev16_c;          dev16    = dev16_c;
289          sad16v   = sad16v_c;          sad16v   = sad16v_c;
290    
291  //      Halfpel8_Refine = Halfpel8_Refine_c;  /*      Halfpel8_Refine = Halfpel8_Refine_c; */
292    
293  #ifdef ARCH_X86  #if defined(ARCH_IS_IA32)
294    
295            if ((cpu_flags & XVID_CPU_ASM)) {
296                    vfilter_31 = xvid_VFilter_31_x86;
297                    hfilter_31 = xvid_HFilter_31_x86;
298            }
299    
300          if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||          if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
301                  (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||                  (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
# Line 318  Line 305 
305                  emms = emms_mmx;                  emms = emms_mmx;
306          }          }
307    
308          if ((cpu_flags & XVID_CPU_MMX) > 0) {          if ((cpu_flags & XVID_CPU_MMX)) {
309    
310                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
311                  fdct = fdct_mmx;                  fdct = fdct_mmx_skal;
312                  idct = idct_mmx;                  idct = idct_mmx;
313    
314                    /* Qpel stuff */
315                    xvid_QP_Funcs = &xvid_QP_Funcs_mmx;
316                    xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;
317    
318                  /* Quantization related functions */                  /* Quantization related functions */
319                  quant_intra   = quant_intra_mmx;                  quant_h263_intra   = quant_h263_intra_mmx;
320                  dequant_intra = dequant_intra_mmx;                  quant_h263_inter   = quant_h263_inter_mmx;
321                  quant_inter   = quant_inter_mmx;                  dequant_h263_intra = dequant_h263_intra_mmx;
322                  dequant_inter = dequant_inter_mmx;                  dequant_h263_inter = dequant_h263_inter_mmx;
323    
324                  quant4_intra   = quant4_intra_mmx;                  quant_mpeg_intra   = quant_mpeg_intra_mmx;
325                  dequant4_intra = dequant4_intra_mmx;                  quant_mpeg_inter   = quant_mpeg_inter_mmx;
326                  quant4_inter   = quant4_inter_mmx;                  dequant_mpeg_intra = dequant_mpeg_intra_mmx;
327                  dequant4_inter = dequant4_inter_mmx;                  dequant_mpeg_inter = dequant_mpeg_inter_mmx;
328    
329                  /* Block related functions */                  /* Block related functions */
330                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
331                  transfer_16to8copy = transfer_16to8copy_mmx;                  transfer_16to8copy = transfer_16to8copy_mmx;
332                  transfer_8to16sub  = transfer_8to16sub_mmx;                  transfer_8to16sub  = transfer_8to16sub_mmx;
333                    transfer_8to16subro  = transfer_8to16subro_mmx;
334                  transfer_8to16sub2 = transfer_8to16sub2_mmx;                  transfer_8to16sub2 = transfer_8to16sub2_mmx;
335                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
336                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
# Line 388  Line 380 
380                  sad8bi  = sad8bi_mmx;                  sad8bi  = sad8bi_mmx;
381                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
382                  sad16v   = sad16v_mmx;                  sad16v   = sad16v_mmx;
   
383          }          }
384    
385          /* these 3dnow functions are faster than mmx, but slower than xmm. */          /* these 3dnow functions are faster than mmx, but slower than xmm. */
386          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW)) {
387    
388                    emms = emms_3dn;
389    
390                  /* ME functions */                  /* ME functions */
391                  sad16bi = sad16bi_3dn;                  sad16bi = sad16bi_3dn;
# Line 403  Line 396 
396          }          }
397    
398    
399          if ((cpu_flags & XVID_CPU_MMXEXT) > 0) {          if ((cpu_flags & XVID_CPU_MMXEXT)) {
400    
401                  /* Inverse DCT */                  /* DCT */
402                    fdct = fdct_xmm_skal;
403                  idct = idct_xmm;                  idct = idct_xmm;
404    
405                  /* Interpolation */                  /* Interpolation */
# Line 418  Line 412 
412                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
413    
414                  /* Quantization */                  /* Quantization */
415                  quant4_intra = quant4_intra_xmm;                  quant_mpeg_intra = quant_mpeg_intra_xmm;
416                  quant4_inter = quant4_inter_xmm;                  quant_mpeg_inter = quant_mpeg_inter_xmm;
417    
418                  dequant_intra = dequant_intra_xmm;                  dequant_h263_intra = dequant_h263_intra_xmm;
419                  dequant_inter = dequant_inter_xmm;                  dequant_h263_inter = dequant_h263_inter_xmm;
420    
421                  /* Buffer transfer */                  /* Buffer transfer */
422                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
# Line 441  Line 435 
435                  sad16v   = sad16v_xmm;                  sad16v   = sad16v_xmm;
436          }          }
437    
438          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW)) {
439    
440                  /* Interpolation */                  /* Interpolation */
441                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
# Line 449  Line 443 
443                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
444          }          }
445    
446          if ((cpu_flags & XVID_CPU_3DNOWEXT) > 0) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
447    
448                  /* Inverse DCT */                  /* Inverse DCT */
449                  idct =  idct_3dne;                  idct =  idct_3dne;
# Line 458  Line 452 
452                  transfer_8to16copy =  transfer_8to16copy_3dne;                  transfer_8to16copy =  transfer_8to16copy_3dne;
453                  transfer_16to8copy = transfer_16to8copy_3dne;                  transfer_16to8copy = transfer_16to8copy_3dne;
454                  transfer_8to16sub =  transfer_8to16sub_3dne;                  transfer_8to16sub =  transfer_8to16sub_3dne;
455                    transfer_8to16subro =  transfer_8to16subro_3dne;
456                  transfer_8to16sub2 =  transfer_8to16sub2_3dne;                  transfer_8to16sub2 =  transfer_8to16sub2_3dne;
457                  transfer_16to8add = transfer_16to8add_3dne;                  transfer_16to8add = transfer_16to8add_3dne;
458                  transfer8x8_copy = transfer8x8_copy_3dne;                  transfer8x8_copy = transfer8x8_copy_3dne;
459    
460                  /* Quantization */                  /* Quantization */
461                  dequant4_intra = dequant4_intra_3dne;                  quant_h263_intra = quant_h263_intra_3dne;
462                  dequant4_inter = dequant4_inter_3dne;                  quant_h263_inter = quant_h263_inter_3dne;
463                  quant_intra = quant_intra_3dne;                  dequant_mpeg_intra = dequant_mpeg_intra_3dne;
464                  quant_inter = quant_inter_3dne;                  dequant_mpeg_inter = dequant_mpeg_inter_3dne;
465                  dequant_intra = dequant_intra_3dne;                  dequant_h263_intra = dequant_h263_intra_3dne;
466                  dequant_inter = dequant_inter_3dne;                  dequant_h263_inter = dequant_h263_inter_3dne;
467    
468                  /* ME functions */                  /* ME functions */
469                  calc_cbp = calc_cbp_3dne;                  calc_cbp = calc_cbp_3dne;
# Line 484  Line 479 
479                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
480          }          }
481    
482    #if defined(EXPERIMENTAL_SSE2_CODE) /* mark the whole SSE2 stuff as experimental. At least on
483          if ((cpu_flags & XVID_CPU_SSE2) > 0) {                                                                             my P4, it crashes... */
484  #ifdef EXPERIMENTAL_SSE2_CODE          if ((cpu_flags & XVID_CPU_SSE2)) {
485    
486                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
487    
488                  /* Quantization */                  /* Quantization */
489                  quant_intra   = quant_intra_sse2;                  quant_h263_intra   = quant_h263_intra_sse2;
490                  dequant_intra = dequant_intra_sse2;                  quant_h263_inter   = quant_h263_inter_sse2;
491                  quant_inter   = quant_inter_sse2;                  dequant_h263_intra = dequant_h263_intra_sse2;
492                  dequant_inter = dequant_inter_sse2;                  dequant_h263_inter = dequant_h263_inter_sse2;
493    
494                  /* ME */                  /* ME; slower than xmm */
495                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
496                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
   
                 /* Forward and Inverse DCT */  
                 idct  = idct_sse2;  
                 fdct = fdct_sse2;  
 #endif  
497          }          }
498    #endif
499  #endif  #endif
500    
501  #ifdef ARCH_IA64  #if defined(ARCH_IS_IA64)
502          if ((cpu_flags & XVID_CPU_IA64) > 0) { //use assembler routines?          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
503            idct_ia64_init();            idct_ia64_init();
504            fdct = fdct_ia64;            fdct = fdct_ia64;
505            idct = idct_ia64;   //not yet working, crashes            idct = idct_ia64;   /*not yet working, crashes */
506            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
507            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
508            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
# Line 520  Line 510 
510            sad16bi = sad16bi_ia64;            sad16bi = sad16bi_ia64;
511            sad8 = sad8_ia64;            sad8 = sad8_ia64;
512            dev16 = dev16_ia64;            dev16 = dev16_ia64;
513  //        Halfpel8_Refine = Halfpel8_Refine_ia64;  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */
514            quant_intra = quant_intra_ia64;            quant_h263_intra = quant_h263_intra_ia64;
515            dequant_intra = dequant_intra_ia64;            quant_h263_inter = quant_h263_inter_ia64;
516            quant_inter = quant_inter_ia64;            dequant_h263_intra = dequant_h263_intra_ia64;
517            dequant_inter = dequant_inter_ia64;            dequant_h263_inter = dequant_h263_inter_ia64;
518            transfer_8to16copy = transfer_8to16copy_ia64;            transfer_8to16copy = transfer_8to16copy_ia64;
519            transfer_16to8copy = transfer_16to8copy_ia64;            transfer_16to8copy = transfer_16to8copy_ia64;
520            transfer_8to16sub = transfer_8to16sub_ia64;            transfer_8to16sub = transfer_8to16sub_ia64;
521            transfer_8to16sub2 = transfer_8to16sub2_ia64;            transfer_8to16sub2 = transfer_8to16sub2_ia64;
522            transfer_16to8add = transfer_16to8add_ia64;            transfer_16to8add = transfer_16to8add_ia64;
523            transfer8x8_copy = transfer8x8_copy_ia64;            transfer8x8_copy = transfer8x8_copy_ia64;
           DEBUG("Using IA-64 assembler routines.\n");  
524          }          }
525  #endif  #endif
526    
527  #ifdef ARCH_PPC  #if defined(ARCH_IS_PPC)
528  #ifdef ARCH_PPC_ALTIVEC          if ((cpu_flags & XVID_CPU_ASM))
529            {
530                    calc_cbp = calc_cbp_ppc;
531            }
532    
533            if ((cpu_flags & XVID_CPU_ALTIVEC))
534            {
535          calc_cbp = calc_cbp_altivec;          calc_cbp = calc_cbp_altivec;
536          fdct = fdct_altivec;          fdct = fdct_altivec;
537          idct = idct_altivec;          idct = idct_altivec;
# Line 544  Line 539 
539          sad16 = sad16_altivec;          sad16 = sad16_altivec;
540          sad8 = sad8_altivec;          sad8 = sad8_altivec;
541          dev16 = dev16_altivec;          dev16 = dev16_altivec;
 #else  
         calc_cbp = calc_cbp_ppc;  
 #endif  
 #endif  
   
         return XVID_ERR_OK;  
 }  
   
   
   
 static int  
 xvid_init_convert(XVID_INIT_CONVERTINFO* convert)  
 {  
         // 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;  
   
         switch (convert->input.colorspace & ~XVID_CSP_VFLIP)  
         {  
                 case XVID_CSP_YV12 :  
                         img.y = convert->input.y;  
                         img.v = (uint8_t*)convert->input.y + width*height;  
                         img.u = (uint8_t*)convert->input.y + width*height + width2*height2;  
                         image_output(&img, width, height, width,  
                                                 convert->output.y, convert->output.y_stride,  
                                                 convert->output.colorspace, convert->interlacing);  
                         break;  
   
                 default :  
                         return XVID_ERR_FORMAT;  
         }  
   
   
         emms();  
         return XVID_ERR_OK;  
 }  
   
   
   
 void fill8(uint8_t * block, int size, int value)  
 {  
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = value;  
 }  
   
 void fill16(int16_t * block, int size, int value)  
 {  
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = value;  
 }  
   
 #define RANDOM(min,max) min + (rand() % (max-min))  
   
 void random8(uint8_t * block, int size, int min, int max)  
 {  
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = RANDOM(min,max);  
 }  
   
 void random16(int16_t * block, int size, int min, int max)  
 {  
         int i;  
         for (i = 0; i < size; i++)  
                 block[i] = RANDOM(min,max);  
542  }  }
543    #endif
544    
545  int compare16(const int16_t * blockA, const int16_t * blockB, int size)  #if defined(_DEBUG)
546  {      xvid_debug = init->debug;
547          int i;  #endif
         for (i = 0; i < size; i++)  
                 if (blockA[i] != blockB[i])  
                         return 1;  
548    
549          return 0;          return 0;
550  }  }
551    
 int diff16(const int16_t * blockA, const int16_t * blockB, int size)  
 {  
         int i, diff = 0;  
         for (i = 0; i < size; i++)  
                 diff += ABS(blockA[i]-blockB[i]);  
         return diff;  
 }  
   
   
 #define XVID_TEST_RANDOM        0x00000001      /* random input data */  
 #define XVID_TEST_VERBOSE       0x00000002      /* verbose error output */  
552    
553    static int
554  #define TEST_FORWARD    0x00000001      /* intra */  xvid_gbl_info(xvid_gbl_info_t * info)
 #define TEST_FDCT  (TEST_FORWARD)  
 #define TEST_IDCT  (0)  
   
 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 */  
         {  
                 min = -256;  
                 max = 255;  
         }else{          /* inverse */  
                 min = -2048;  
                 max = 2047;  
         }  
   
         for (i = 0; i < 64*64; i++)  
         {  
                 if ((flags & XVID_TEST_RANDOM))  
                 {  
                         random16(arrayA, 64, min, max);  
                 }else{  
                         fill16(arrayA, 64, i);  
                 }  
                 memcpy(arrayB, arrayA, 64*sizeof(int16_t));  
   
                 if ((test & TEST_FORWARD))  
                 {  
                         timeSTART = read_counter();  
                         ((fdctFunc*)funcA)(arrayA);  
                         timeA += read_counter() - timeSTART;  
   
                         timeSTART = read_counter();  
                         ((fdctFunc*)funcB)(arrayB);  
                         timeB += read_counter() - timeSTART;  
                 }  
                 else  
555                  {                  {
556                          timeSTART = read_counter();          if (XVID_VERSION_MAJOR(info->version) != 1) /* v1.x.x */
557                          ((idctFunc*)funcA)(arrayA);                  return XVID_ERR_VERSION;
                         timeA += read_counter() - timeSTART;  
   
                         timeSTART = read_counter();  
                         ((idctFunc*)funcB)(arrayB);  
                         timeB += read_counter() - timeSTART;  
                 }  
   
                 tmp = diff16(arrayA, arrayB, 64) / 64;  
                 if (tmp > max_error)  
                         max_error = tmp;  
                 if (tmp < min_error)  
                         min_error = tmp;  
558    
559                  count++;          info->actual_version = XVID_VERSION;
560          }          info->build = "dev-api-4";
561            info->cpu_flags = detect_cpu_flags();
562    
563          /* print the "average difference" of best/worst transforms */  #if defined(_SMP) && defined(WIN32)
564          printf("%s:\t%i\t(min_error:%i, max_error:%i)\n", nameB, (int)(timeB / count), min_error, max_error);          info->num_threads = pthread_num_processors_np();;
565    #else
566            info->num_threads = 0;
567    #endif
568    
569          return 0;          return 0;
570  }  }
571    
572    
573  #define TEST_QUANT      0x00000001      /* forward quantization */  static int
574  #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)  
   
 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, retB;  
         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 */  
575                          {                          {
576                                  timeSTART = read_counter();          int width;
577                                  ((quanth263_intraFunc*)funcA)(arrayA, arrayX, q, q);          int height;
578                                  timeA += read_counter() - timeSTART;          int width2;
579            int height2;
580            IMAGE img;
581    
582                                  timeSTART = read_counter();          if (XVID_VERSION_MAJOR(convert->version) != 1)   /* v1.x.x */
583                                  ((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;  
584    
585                                  timeSTART = read_counter();  #if 0
586                                  retB = ((quanth263_interFunc*)funcB)(arrayB, arrayX, q);          const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
587                                  timeB += read_counter() - timeSTART;  #endif
588                          }          width = convert->width;
589            height = convert->height;
590            width2 = convert->width/2;
591            height2 = convert->height/2;
592    
593                          /* 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))  
594                          {                          {
595                                  errors++;                  case XVID_CSP_YV12 :
596                                  if ((flags & XVID_TEST_VERBOSE))                          img.y = convert->input.plane[0];
597                                          printf("%s error: q=%i, i=%i\n", nameB, q, i);                          img.v = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height;
598                          }                          img.u = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height + (convert->input.stride[0]/2)*height2;
599                            image_output(&img, width, height, width,
600                                                    (uint8_t**)convert->output.plane, convert->output.stride,
601                                                    convert->output.csp, convert->interlacing);
602                            break;
603    
604                          count++;                  default :
605                  }                          return XVID_ERR_FORMAT;
606          }          }
607    
         printf("%s:\t%i", nameB, (int)(timeB / count));  
         if (errors>0)  
                 printf("\t(%i errors out of %i)", errors, count);  
         printf("\n");  
608    
609            emms();
610          return 0;          return 0;
611  }  }
612    
613    /*****************************************************************************
614     * XviD Global Entry point
615  int xvid_init_test(int flags)   *
616  {   * Well this function initialize all internal function pointers according
617          int cpu_flags;   * to the CPU features forced by the library client or autodetected (depending
618     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
619          srand(time(0));   * image colorspace transformation tables.
620     *
621          printf("xvid_init_test\n");   ****************************************************************************/
   
 #if defined(ARCH_X86)  
         cpu_flags = check_cpu_features();  
         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;  
 }  
622    
623    
624  int  int
625  xvid_init(void *handle,  xvid_global(void *handle,
626                    int opt,                    int opt,
627                    void *param1,                    void *param1,
628                    void *param2)                    void *param2)
629  {  {
630          switch(opt)          switch(opt)
631          {          {
632                  case XVID_INIT_INIT :                  case XVID_GBL_INIT :
633                          return xvid_init_init((XVID_INIT_PARAM*)param1);                          return xvid_gbl_init((xvid_gbl_init_t*)param1);
634    
635                  case XVID_INIT_CONVERT :          case XVID_GBL_INFO :
636                          return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);              return xvid_gbl_info((xvid_gbl_info_t*)param1);
637    
638                  case XVID_INIT_TEST :                  case XVID_GBL_CONVERT :
639                          return xvid_init_test((int)param1);                          return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
640    
641                  default :                  default :
642                          return XVID_ERR_FAIL;                          return XVID_ERR_FAIL;
# Line 948  Line 660 
660                          void *param2)                          void *param2)
661  {  {
662          switch (opt) {          switch (opt) {
         case XVID_DEC_DECODE:  
                 return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);  
   
663          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
664                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((xvid_dec_create_t *) param1);
665    
666          case XVID_DEC_DESTROY:          case XVID_DEC_DESTROY:
667                  return decoder_destroy((DECODER *) handle);                  return decoder_destroy((DECODER *) handle);
668    
669            case XVID_DEC_DECODE:
670                    return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
671    
672          default:          default:
673                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
674          }          }
# Line 982  Line 694 
694          switch (opt) {          switch (opt) {
695          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
696    
697                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)                  return enc_encode((Encoder *) handle,
698                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,                                                            (xvid_enc_frame_t *) param1,
699                                                            (XVID_ENC_STATS *) param2);                                                            (xvid_enc_stats_t *) param2);
                 else  
                 return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,  
                                                           (XVID_ENC_STATS *) param2);  
700    
701          case XVID_ENC_CREATE:          case XVID_ENC_CREATE:
702                  return encoder_create((XVID_ENC_PARAM *) param1);                  return enc_create((xvid_enc_create_t *) param1);
703    
704          case XVID_ENC_DESTROY:          case XVID_ENC_DESTROY:
705                  return encoder_destroy((Encoder *) handle);                  return enc_destroy((Encoder *) handle);
706    
707          default:          default:
708                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;

Legend:
Removed from v.1.33.2.21  
changed lines
  Added in v.1.45.2.17

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