[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.45.2.20, Thu Nov 13 23:11:24 2003 UTC revision 1.51, Mon Apr 12 14:05:08 2004 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-2003 Peter Ross <pross@xvid.org>   *  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
# Line 46  Line 46 
46  #include "utils/timer.h"  #include "utils/timer.h"
47  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
48  #include "image/qpel.h"  #include "image/qpel.h"
49    #include "image/postprocessing.h"
50    
51  #if defined(_DEBUG)  #if defined(_DEBUG)
52  unsigned int xvid_debug = 0; /* xvid debug mask */  unsigned int xvid_debug = 0; /* xvid debug mask */
53  #endif  #endif
54    
55  #if defined(ARCH_IS_IA32)  #if defined(ARCH_IS_IA32) && defined(_MSC_VER)
 #if defined(_MSC_VER)  
56  #       include <windows.h>  #       include <windows.h>
57  #else  #elif defined(ARCH_IS_IA32) || defined(ARCH_IS_PPC)
58  #       include <signal.h>  #       include <signal.h>
59  #       include <setjmp.h>  #       include <setjmp.h>
60    
# Line 77  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(_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_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    
# Line 133  Line 142 
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 228  Line 236 
236          interpolate8x8_avg2 = interpolate8x8_avg2_c;          interpolate8x8_avg2 = interpolate8x8_avg2_c;
237          interpolate8x8_avg4 = interpolate8x8_avg4_c;          interpolate8x8_avg4 = interpolate8x8_avg4_c;
238    
239            /* postprocessing */
240            image_brightness = image_brightness_c;
241    
242          /* reduced resolution */          /* reduced resolution */
243          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
244          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
# Line 247  Line 258 
258          bgra_to_yv12    = bgra_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
259          abgr_to_yv12    = abgr_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
260          rgba_to_yv12    = rgba_to_yv12_c;          rgba_to_yv12    = rgba_to_yv12_c;
261            argb_to_yv12    = argb_to_yv12_c;
262          yuyv_to_yv12    = yuyv_to_yv12_c;          yuyv_to_yv12    = yuyv_to_yv12_c;
263          uyvy_to_yv12    = uyvy_to_yv12_c;          uyvy_to_yv12    = uyvy_to_yv12_c;
264    
# Line 256  Line 268 
268          bgrai_to_yv12   = bgrai_to_yv12_c;          bgrai_to_yv12   = bgrai_to_yv12_c;
269          abgri_to_yv12   = abgri_to_yv12_c;          abgri_to_yv12   = abgri_to_yv12_c;
270          rgbai_to_yv12   = rgbai_to_yv12_c;          rgbai_to_yv12   = rgbai_to_yv12_c;
271            argbi_to_yv12   = argbi_to_yv12_c;
272          yuyvi_to_yv12   = yuyvi_to_yv12_c;          yuyvi_to_yv12   = yuyvi_to_yv12_c;
273          uyvyi_to_yv12   = uyvyi_to_yv12_c;          uyvyi_to_yv12   = uyvyi_to_yv12_c;
274    
   
275          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
276          yv12_to_rgb555  = yv12_to_rgb555_c;          yv12_to_rgb555  = yv12_to_rgb555_c;
277          yv12_to_rgb565  = yv12_to_rgb565_c;          yv12_to_rgb565  = yv12_to_rgb565_c;
# Line 267  Line 279 
279          yv12_to_bgra    = yv12_to_bgra_c;          yv12_to_bgra    = yv12_to_bgra_c;
280          yv12_to_abgr    = yv12_to_abgr_c;          yv12_to_abgr    = yv12_to_abgr_c;
281          yv12_to_rgba    = yv12_to_rgba_c;          yv12_to_rgba    = yv12_to_rgba_c;
282            yv12_to_argb    = yv12_to_argb_c;
283          yv12_to_yuyv    = yv12_to_yuyv_c;          yv12_to_yuyv    = yv12_to_yuyv_c;
284          yv12_to_uyvy    = yv12_to_uyvy_c;          yv12_to_uyvy    = yv12_to_uyvy_c;
285    
# Line 276  Line 289 
289          yv12_to_bgrai   = yv12_to_bgrai_c;          yv12_to_bgrai   = yv12_to_bgrai_c;
290          yv12_to_abgri   = yv12_to_abgri_c;          yv12_to_abgri   = yv12_to_abgri_c;
291          yv12_to_rgbai   = yv12_to_rgbai_c;          yv12_to_rgbai   = yv12_to_rgbai_c;
292            yv12_to_argbi   = yv12_to_argbi_c;
293          yv12_to_yuyvi   = yv12_to_yuyvi_c;          yv12_to_yuyvi   = yv12_to_yuyvi_c;
294          yv12_to_uyvyi   = yv12_to_uyvyi_c;          yv12_to_uyvyi   = yv12_to_uyvyi_c;
295    
# Line 289  Line 303 
303          sad16v     = sad16v_c;          sad16v     = sad16v_c;
304          sse8_16bit = sse8_16bit_c;          sse8_16bit = sse8_16bit_c;
305    
 /*      Halfpel8_Refine = Halfpel8_Refine_c; */  
   
306  #if defined(ARCH_IS_IA32)  #if defined(ARCH_IS_IA32)
307    
308          if ((cpu_flags & XVID_CPU_ASM)) {          if ((cpu_flags & XVID_CPU_ASM)) {
# Line 350  Line 362 
362                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
363                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
364    
365                    /* postprocessing */
366                    image_brightness = image_brightness_mmx;
367    
368                  /* reduced resolution */                  /* reduced resolution */
369                  copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;                  copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
370                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
# Line 447  Line 462 
462    
463          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
464    
                 /* Inverse DCT */  
                 idct =  idct_3dne;  
   
465                  /* Buffer transfer */                  /* Buffer transfer */
466                  transfer_8to16copy =  transfer_8to16copy_3dne;                  transfer_8to16copy =  transfer_8to16copy_3dne;
467                  transfer_16to8copy = transfer_16to8copy_3dne;                  transfer_16to8copy = transfer_16to8copy_3dne;
468                  transfer_8to16sub =  transfer_8to16sub_3dne;                  transfer_8to16sub =  transfer_8to16sub_3dne;
469                  transfer_8to16subro =  transfer_8to16subro_3dne;                  transfer_8to16subro =  transfer_8to16subro_3dne;
                 transfer_8to16sub2 =  transfer_8to16sub2_3dne;  
470                  transfer_16to8add = transfer_16to8add_3dne;                  transfer_16to8add = transfer_16to8add_3dne;
471                  transfer8x8_copy = transfer8x8_copy_3dne;                  transfer8x8_copy = transfer8x8_copy_3dne;
472    
473                    if ((cpu_flags & XVID_CPU_MMXEXT)) {
474                            /* Inverse DCT */
475                            idct =  idct_3dne;
476    
477                            /* Buffer transfer */
478                            transfer_8to16sub2 =  transfer_8to16sub2_3dne;
479    
480                            /* Interpolation */
481                            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
482                            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
483                            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
484    
485                  /* Quantization */                  /* Quantization */
486                  quant_h263_intra = quant_h263_intra_3dne;                          quant_h263_intra = quant_h263_intra_3dne;               /* cmov only */
487                  quant_h263_inter = quant_h263_inter_3dne;                  quant_h263_inter = quant_h263_inter_3dne;
488                  dequant_mpeg_intra = dequant_mpeg_intra_3dne;                          dequant_mpeg_intra = dequant_mpeg_intra_3dne;   /* cmov only */
489                  dequant_mpeg_inter = dequant_mpeg_inter_3dne;                  dequant_mpeg_inter = dequant_mpeg_inter_3dne;
490                  dequant_h263_intra = dequant_h263_intra_3dne;                  dequant_h263_intra = dequant_h263_intra_3dne;
491                  dequant_h263_inter = dequant_h263_inter_3dne;                  dequant_h263_inter = dequant_h263_inter_3dne;
492    
493                  /* ME functions */                  /* ME functions */
494                  calc_cbp = calc_cbp_3dne;                  calc_cbp = calc_cbp_3dne;
495    
496                  sad16 = sad16_3dne;                  sad16 = sad16_3dne;
497                  sad8 = sad8_3dne;                  sad8 = sad8_3dne;
498                  sad16bi = sad16bi_3dne;                  sad16bi = sad16bi_3dne;
499                  sad8bi = sad8bi_3dne;                  sad8bi = sad8bi_3dne;
500                  dev16 = dev16_3dne;                  dev16 = dev16_3dne;
501                    }
                 /* Interpolation */  
                 interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;  
                 interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;  
                 interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;  
502          }          }
503    
 #if defined(EXPERIMENTAL_SSE2_CODE) /* mark the whole SSE2 stuff as experimental. At least on  
                                                                            my P4, it crashes... */  
504          if ((cpu_flags & XVID_CPU_SSE2)) {          if ((cpu_flags & XVID_CPU_SSE2)) {
505    
506                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
# Line 497  Line 515 
515                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
516                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
517    
518                  /* DCT operators */                  /* DCT operators
519                     * no iDCT because it's not "Walken matching" */
520                  fdct = fdct_sse2_skal;                  fdct = fdct_sse2_skal;
                 idct = idct_sse2_dmitry;  
521          }          }
522  #endif  #endif /* ARCH_IS_IA32 */
 #endif  
523    
524  #if defined(ARCH_IS_IA64)  #if defined(ARCH_IS_IA64)
525          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
# Line 531  Line 548 
548  #endif  #endif
549    
550  #if defined(ARCH_IS_PPC)  #if defined(ARCH_IS_PPC)
551          if ((cpu_flags & XVID_CPU_ASM))          if ((cpu_flags & XVID_CPU_ALTIVEC)) {
552          {            /* sad operators */
553                  calc_cbp = calc_cbp_ppc;            sad16 = sad16_altivec_c;
554          }            sad16bi = sad16bi_altivec_c;
555              sad8 = sad8_altivec_c;
556              dev16 = dev16_altivec_c;
557    
558              sse8_16bit = sse8_16bit_altivec_c;
559    
560              /* mem transfer */
561              transfer_8to16copy = transfer_8to16copy_altivec_c;
562              transfer_16to8copy = transfer_16to8copy_altivec_c;
563              transfer_8to16sub = transfer_8to16sub_altivec_c;
564              transfer_8to16subro = transfer_8to16subro_altivec_c;
565              transfer_8to16sub2 = transfer_8to16sub2_altivec_c;
566              transfer_16to8add = transfer_16to8add_altivec_c;
567              transfer8x8_copy = transfer8x8_copy_altivec_c;
568    
569          if ((cpu_flags & XVID_CPU_ALTIVEC))            /* Inverse DCT */
570          {            idct = idct_altivec_c;
571                  calc_cbp = calc_cbp_altivec;  
572                  fdct = fdct_altivec;            /* Interpolation */
573                  idct = idct_altivec;            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_altivec_c;
574                  sadInit = sadInit_altivec;            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_altivec_c;
575                  sad16 = sad16_altivec;            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_altivec_c;
576                  sad8 = sad8_altivec;  
577                  dev16 = dev16_altivec;            interpolate8x8_avg2 = interpolate8x8_avg2_altivec_c;
578              interpolate8x8_avg4 = interpolate8x8_avg4_altivec_c;
579    
580              interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_altivec_c;
581    
582              /* Colorspace conversion */
583              bgra_to_yv12 = bgra_to_yv12_altivec_c;
584              abgr_to_yv12 = abgr_to_yv12_altivec_c;
585              rgba_to_yv12 = rgba_to_yv12_altivec_c;
586              argb_to_yv12 = argb_to_yv12_altivec_c;
587    
588              yuyv_to_yv12 = yuyv_to_yv12_altivec_c;
589              uyvy_to_yv12 = uyvy_to_yv12_altivec_c;
590    
591              yv12_to_yuyv = yv12_to_yuyv_altivec_c;
592              yv12_to_uyvy = yv12_to_uyvy_altivec_c;
593    
594              /* Quantization */
595              quant_h263_intra = quant_h263_intra_altivec_c;
596              quant_h263_inter = quant_h263_inter_altivec_c;
597              dequant_h263_intra = dequant_h263_intra_altivec_c;
598              dequant_h263_inter = dequant_h263_inter_altivec_c;
599          }          }
600  #endif  #endif
601    
# Line 552  Line 603 
603      xvid_debug = init->debug;      xvid_debug = init->debug;
604  #endif  #endif
605    
606      return 0;      return(0);
607  }  }
608    
609    
# Line 563  Line 614 
614                  return XVID_ERR_VERSION;                  return XVID_ERR_VERSION;
615    
616          info->actual_version = XVID_VERSION;          info->actual_version = XVID_VERSION;
617          info->build = "dev-api-4";          info->build = "xvid-1.0.0";
618          info->cpu_flags = detect_cpu_flags();          info->cpu_flags = detect_cpu_flags();
619    
620  #if defined(_SMP) && defined(WIN32)  #if defined(_SMP) && defined(WIN32)

Legend:
Removed from v.1.45.2.20  
changed lines
  Added in v.1.51

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