[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.48.2.4, Sat Jun 5 23:08:01 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>
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 37  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    #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(ARCH_IS_IA32)
56  #if defined(_MSC_VER)  #if defined(_MSC_VER)
57  #       include <windows.h>  #       include <windows.h>
58  #else  #else
# Line 153  Line 159 
159    
160    
161  static  static
162  int xvid_init_init(XVID_INIT_PARAM * init_param)  int xvid_gbl_init(xvid_gbl_init_t * init)
163  {  {
164          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;  
165    
166          /* Do we have to force CPU features  ? */          if (XVID_VERSION_MAJOR(init->version) != 1) /* v1.x.x */
167          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;  
168    
169            cpu_flags = (init->cpu_flags & XVID_CPU_FORCE) ? init->cpu_flags : detect_cpu_flags();
170    
171          /* Initialize the function pointers */          /* Initialize the function pointers */
172          idct_int32_init();          idct_int32_init();
# Line 196  Line 182 
182          /* Restore FPU context : emms_c is a nop functions */          /* Restore FPU context : emms_c is a nop functions */
183          emms = emms_c;          emms = emms_c;
184    
185            /* Qpel stuff */
186            xvid_QP_Funcs = &xvid_QP_Funcs_C;
187            xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_C;
188            xvid_Init_QP();
189    
190          /* Quantization functions */          /* Quantization functions */
191          quant_intra   = quant_intra_c;          quant_h263_intra   = quant_h263_intra_c;
192          dequant_intra = dequant_intra_c;          quant_h263_inter   = quant_h263_inter_c;
193          quant_inter   = quant_inter_c;          dequant_h263_intra = dequant_h263_intra_c;
194          dequant_inter = dequant_inter_c;          dequant_h263_inter = dequant_h263_inter_c;
195    
196          quant4_intra   = quant4_intra_c;          quant_mpeg_intra   = quant_mpeg_intra_c;
197          dequant4_intra = dequant4_intra_c;          quant_mpeg_inter   = quant_mpeg_inter_c;
198          quant4_inter   = quant4_inter_c;          dequant_mpeg_intra = dequant_mpeg_intra_c;
199          dequant4_inter = dequant4_inter_c;          dequant_mpeg_inter = dequant_mpeg_inter_c;
200    
201          /* Block transfer related functions */          /* Block transfer related functions */
202          transfer_8to16copy = transfer_8to16copy_c;          transfer_8to16copy = transfer_8to16copy_c;
# Line 238  Line 229 
229          interpolate8x8_avg2 = interpolate8x8_avg2_c;          interpolate8x8_avg2 = interpolate8x8_avg2_c;
230          interpolate8x8_avg4 = interpolate8x8_avg4_c;          interpolate8x8_avg4 = interpolate8x8_avg4_c;
231    
232          /* reduced resoltuion */          /* reduced resolution */
233          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;          copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
234          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;          add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
235          vfilter_31 = xvid_VFilter_31_C;          vfilter_31 = xvid_VFilter_31_C;
# Line 257  Line 248 
248          bgra_to_yv12    = bgra_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
249          abgr_to_yv12    = abgr_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
250          rgba_to_yv12    = rgba_to_yv12_c;          rgba_to_yv12    = rgba_to_yv12_c;
251            argb_to_yv12    = argb_to_yv12_c;
252          yuyv_to_yv12    = yuyv_to_yv12_c;          yuyv_to_yv12    = yuyv_to_yv12_c;
253          uyvy_to_yv12    = uyvy_to_yv12_c;          uyvy_to_yv12    = uyvy_to_yv12_c;
254    
# Line 266  Line 258 
258          bgrai_to_yv12   = bgrai_to_yv12_c;          bgrai_to_yv12   = bgrai_to_yv12_c;
259          abgri_to_yv12   = abgri_to_yv12_c;          abgri_to_yv12   = abgri_to_yv12_c;
260          rgbai_to_yv12   = rgbai_to_yv12_c;          rgbai_to_yv12   = rgbai_to_yv12_c;
261            argbi_to_yv12   = argbi_to_yv12_c;
262          yuyvi_to_yv12   = yuyvi_to_yv12_c;          yuyvi_to_yv12   = yuyvi_to_yv12_c;
263          uyvyi_to_yv12   = uyvyi_to_yv12_c;          uyvyi_to_yv12   = uyvyi_to_yv12_c;
264    
   
265          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
266          yv12_to_rgb555  = yv12_to_rgb555_c;          yv12_to_rgb555  = yv12_to_rgb555_c;
267          yv12_to_rgb565  = yv12_to_rgb565_c;          yv12_to_rgb565  = yv12_to_rgb565_c;
# Line 277  Line 269 
269          yv12_to_bgra    = yv12_to_bgra_c;          yv12_to_bgra    = yv12_to_bgra_c;
270          yv12_to_abgr    = yv12_to_abgr_c;          yv12_to_abgr    = yv12_to_abgr_c;
271          yv12_to_rgba    = yv12_to_rgba_c;          yv12_to_rgba    = yv12_to_rgba_c;
272            yv12_to_argb    = yv12_to_argb_c;
273          yv12_to_yuyv    = yv12_to_yuyv_c;          yv12_to_yuyv    = yv12_to_yuyv_c;
274          yv12_to_uyvy    = yv12_to_uyvy_c;          yv12_to_uyvy    = yv12_to_uyvy_c;
275    
# Line 286  Line 279 
279          yv12_to_bgrai   = yv12_to_bgrai_c;          yv12_to_bgrai   = yv12_to_bgrai_c;
280          yv12_to_abgri   = yv12_to_abgri_c;          yv12_to_abgri   = yv12_to_abgri_c;
281          yv12_to_rgbai   = yv12_to_rgbai_c;          yv12_to_rgbai   = yv12_to_rgbai_c;
282            yv12_to_argbi   = yv12_to_argbi_c;
283          yv12_to_yuyvi   = yv12_to_yuyvi_c;          yv12_to_yuyvi   = yv12_to_yuyvi_c;
284          yv12_to_uyvyi   = yv12_to_uyvyi_c;          yv12_to_uyvyi   = yv12_to_uyvyi_c;
285    
# Line 297  Line 291 
291          sad8bi   = sad8bi_c;          sad8bi   = sad8bi_c;
292          dev16    = dev16_c;          dev16    = dev16_c;
293          sad16v   = sad16v_c;          sad16v   = sad16v_c;
294            sse8_16bit = sse8_16bit_c;
 /*      Halfpel8_Refine = Halfpel8_Refine_c; */  
295    
296  #if defined(ARCH_IS_IA32)  #if defined(ARCH_IS_IA32)
297    
298          if ((cpu_flags & XVID_CPU_ASM))          if ((cpu_flags & XVID_CPU_ASM)) {
         {  
299                  vfilter_31 = xvid_VFilter_31_x86;                  vfilter_31 = xvid_VFilter_31_x86;
300                  hfilter_31 = xvid_HFilter_31_x86;                  hfilter_31 = xvid_HFilter_31_x86;
301          }          }
# Line 319  Line 311 
311          if ((cpu_flags & XVID_CPU_MMX)) {          if ((cpu_flags & XVID_CPU_MMX)) {
312    
313                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
314                  fdct = fdct_mmx;                  fdct = fdct_mmx_skal;
315                  idct = idct_mmx;                  idct = idct_mmx;
316    
317                    /* Qpel stuff */
318                    xvid_QP_Funcs = &xvid_QP_Funcs_mmx;
319                    xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;
320    
321                  /* Quantization related functions */                  /* Quantization related functions */
322                  quant_intra   = quant_intra_mmx;                  quant_h263_intra   = quant_h263_intra_mmx;
323                  dequant_intra = dequant_intra_mmx;                  quant_h263_inter   = quant_h263_inter_mmx;
324                  quant_inter   = quant_inter_mmx;                  dequant_h263_intra = dequant_h263_intra_mmx;
325                  dequant_inter = dequant_inter_mmx;                  dequant_h263_inter = dequant_h263_inter_mmx;
326    
327                  quant4_intra   = quant4_intra_mmx;                  quant_mpeg_intra   = quant_mpeg_intra_mmx;
328                  dequant4_intra = dequant4_intra_mmx;                  quant_mpeg_inter   = quant_mpeg_inter_mmx;
329                  quant4_inter   = quant4_inter_mmx;                  dequant_mpeg_intra = dequant_mpeg_intra_mmx;
330                  dequant4_inter = dequant4_inter_mmx;                  dequant_mpeg_inter = dequant_mpeg_inter_mmx;
331    
332                  /* Block related functions */                  /* Block related functions */
333                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
# Line 387  Line 383 
383                  sad8bi  = sad8bi_mmx;                  sad8bi  = sad8bi_mmx;
384                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
385                  sad16v   = sad16v_mmx;                  sad16v   = sad16v_mmx;
386                    sse8_16bit = sse8_16bit_mmx;
387          }          }
388    
389          /* 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 402 
402    
403          if ((cpu_flags & XVID_CPU_MMXEXT)) {          if ((cpu_flags & XVID_CPU_MMXEXT)) {
404    
405                  /* Inverse DCT */                  /* DCT */
406                    fdct = fdct_xmm_skal;
407                  idct = idct_xmm;                  idct = idct_xmm;
408    
409                  /* Interpolation */                  /* Interpolation */
# Line 418  Line 416 
416                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
417    
418                  /* Quantization */                  /* Quantization */
419                  quant4_intra = quant4_intra_xmm;                  quant_mpeg_intra = quant_mpeg_intra_xmm;
420                  quant4_inter = quant4_inter_xmm;                  quant_mpeg_inter = quant_mpeg_inter_xmm;
421    
422                  dequant_intra = dequant_intra_xmm;                  dequant_h263_intra = dequant_h263_intra_xmm;
423                  dequant_inter = dequant_inter_xmm;                  dequant_h263_inter = dequant_h263_inter_xmm;
424    
425                  /* Buffer transfer */                  /* Buffer transfer */
426                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
# Line 451  Line 449 
449    
450          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
451    
                 /* Inverse DCT */  
                 idct =  idct_3dne;  
   
452                  /* Buffer transfer */                  /* Buffer transfer */
453                  transfer_8to16copy =  transfer_8to16copy_3dne;                  transfer_8to16copy =  transfer_8to16copy_3dne;
454                  transfer_16to8copy = transfer_16to8copy_3dne;                  transfer_16to8copy = transfer_16to8copy_3dne;
455                  transfer_8to16sub =  transfer_8to16sub_3dne;                  transfer_8to16sub =  transfer_8to16sub_3dne;
456                  transfer_8to16subro =  transfer_8to16subro_3dne;                  transfer_8to16subro =  transfer_8to16subro_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                    if ((cpu_flags & XVID_CPU_MMXEXT)) {
461                            /* Inverse DCT */
462                            idct =  idct_3dne;
463    
464                            /* Buffer transfer */
465                            transfer_8to16sub2 =  transfer_8to16sub2_3dne;
466    
467                            /* Interpolation */
468                            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
469                            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
470                            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
471    
472                  /* Quantization */                  /* Quantization */
473                  dequant4_intra = dequant4_intra_3dne;                          quant_h263_intra = quant_h263_intra_3dne;               /* cmov only */
474                  dequant4_inter = dequant4_inter_3dne;                          quant_h263_inter = quant_h263_inter_3dne;
475                  quant_intra = quant_intra_3dne;                          dequant_mpeg_intra = dequant_mpeg_intra_3dne;   /* cmov only */
476                  quant_inter = quant_inter_3dne;                          dequant_mpeg_inter = dequant_mpeg_inter_3dne;
477                  dequant_intra = dequant_intra_3dne;                          dequant_h263_intra = dequant_h263_intra_3dne;
478                  dequant_inter = dequant_inter_3dne;                          dequant_h263_inter = dequant_h263_inter_3dne;
479    
480                  /* ME functions */                  /* ME functions */
481                  calc_cbp = calc_cbp_3dne;                  calc_cbp = calc_cbp_3dne;
482    
483                  sad16 = sad16_3dne;                  sad16 = sad16_3dne;
484                  sad8 = sad8_3dne;                  sad8 = sad8_3dne;
485                  sad16bi = sad16bi_3dne;                  sad16bi = sad16bi_3dne;
486                  sad8bi = sad8bi_3dne;                  sad8bi = sad8bi_3dne;
487                  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;  
488          }          }
489            }
490    
491          if ((cpu_flags & XVID_CPU_SSE2)) {          if ((cpu_flags & XVID_CPU_SSE2)) {
492    
493                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
494    
495                  /* Quantization */                  /* Quantization */
496                  quant_intra   = quant_intra_sse2;                  quant_h263_intra   = quant_h263_intra_sse2;
497                  dequant_intra = dequant_intra_sse2;                  quant_h263_inter   = quant_h263_inter_sse2;
498                  quant_inter   = quant_inter_sse2;                  dequant_h263_intra = dequant_h263_intra_sse2;
499                  dequant_inter = dequant_inter_sse2;                  dequant_h263_inter = dequant_h263_inter_sse2;
500    
501  #if defined(EXPERIMENTAL_SSE2_CODE)                  /* SAD operators */
                 /* ME; slower than xmm */  
502                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
503                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
504  #endif  
505                  /* Forward and Inverse DCT */                  /* DCT operators
506                  idct  = idct_sse2;                   * no iDCT because it's not "Walken matching" */
507                  fdct = fdct_sse2;                  fdct = fdct_sse2_skal;
508          }          }
509  #endif  #endif /* ARCH_IS_IA32 */
510    
511  #if defined(ARCH_IS_IA64)  #if defined(ARCH_IS_IA64)
512          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
# Line 520  Line 521 
521            sad8 = sad8_ia64;            sad8 = sad8_ia64;
522            dev16 = dev16_ia64;            dev16 = dev16_ia64;
523  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */  /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */
524            quant_intra = quant_intra_ia64;            quant_h263_intra = quant_h263_intra_ia64;
525            dequant_intra = dequant_intra_ia64;            quant_h263_inter = quant_h263_inter_ia64;
526            quant_inter = quant_inter_ia64;            dequant_h263_intra = dequant_h263_intra_ia64;
527            dequant_inter = dequant_inter_ia64;            dequant_h263_inter = dequant_h263_inter_ia64;
528            transfer_8to16copy = transfer_8to16copy_ia64;            transfer_8to16copy = transfer_8to16copy_ia64;
529            transfer_16to8copy = transfer_16to8copy_ia64;            transfer_16to8copy = transfer_16to8copy_ia64;
530            transfer_8to16sub = transfer_8to16sub_ia64;            transfer_8to16sub = transfer_8to16sub_ia64;
531            transfer_8to16sub2 = transfer_8to16sub2_ia64;            transfer_8to16sub2 = transfer_8to16sub2_ia64;
532            transfer_16to8add = transfer_16to8add_ia64;            transfer_16to8add = transfer_16to8add_ia64;
533            transfer8x8_copy = transfer8x8_copy_ia64;            transfer8x8_copy = transfer8x8_copy_ia64;
           DPRINTF(DPRINTF_DEBUG, "Using IA-64 assembler routines.");  
534          }          }
535  #endif  #endif
536    
# Line 552  Line 552 
552          }          }
553  #endif  #endif
554    
555          return XVID_ERR_OK;  #if defined(_DEBUG)
556  }      xvid_debug = init->debug;
557    #endif
   
   
 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);  
 }  
   
 int compare16(const int16_t * blockA, const int16_t * blockB, int size)  
 {  
         int i;  
         for (i = 0; i < size; i++)  
                 if (blockA[i] != blockB[i])  
                         return 1;  
558    
559          return 0;          return 0;
560  }  }
561    
 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 */  
   
   
 #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 */  
         {  
                 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;  
562    
563                          timeSTART = read_counter();  static int
564                          ((fdctFunc*)funcB)(arrayB);  xvid_gbl_info(xvid_gbl_info_t * info)
                         timeB += read_counter() - timeSTART;  
                 }  
                 else  
565                  {                  {
566                          timeSTART = read_counter();          if (XVID_VERSION_MAJOR(info->version) != 1) /* v1.x.x */
567                          ((idctFunc*)funcA)(arrayA);                  return XVID_ERR_VERSION;
                         timeA += read_counter() - timeSTART;  
568    
569                          timeSTART = read_counter();          info->actual_version = XVID_VERSION;
570                          ((idctFunc*)funcB)(arrayB);          info->build = "xvid-1.0.1";
571                          timeB += read_counter() - timeSTART;          info->cpu_flags = detect_cpu_flags();
                 }  
   
                 tmp = diff16(arrayA, arrayB, 64) / 64;  
                 if (tmp > max_error)  
                         max_error = tmp;  
                 if (tmp < min_error)  
                         min_error = tmp;  
572    
573                  count++;  #if defined(_SMP) && defined(WIN32)
574          }          info->num_threads = pthread_num_processors_np();;
575    #else
576          /* print the "average difference" of best/worst transforms */          info->num_threads = 0;
577          printf("%s:\t%i\t(min_error:%i, max_error:%i)\n", nameB, (int)(timeB / count), min_error, max_error);  #endif
578    
579          return 0;          return 0;
580  }  }
581    
582    
583  #define TEST_QUANT      0x00000001      /* forward quantization */  static int
584  #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 */  
585                          {                          {
586                                  timeSTART = read_counter();          int width;
587                                  ((quanth263_intraFunc*)funcA)(arrayA, arrayX, q, q);          int height;
588                                  timeA += read_counter() - timeSTART;          int width2;
589            int height2;
590            IMAGE img;
591    
592                                  timeSTART = read_counter();          if (XVID_VERSION_MAJOR(convert->version) != 1)   /* v1.x.x */
593                                  ((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;  
594    
595                                  timeSTART = read_counter();  #if 0
596                                  retB = ((quanth263_interFunc*)funcB)(arrayB, arrayX, q);          const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
597                                  timeB += read_counter() - timeSTART;  #endif
598                          }          width = convert->width;
599            height = convert->height;
600            width2 = convert->width/2;
601            height2 = convert->height/2;
602    
603                          /* 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))  
604                          {                          {
605                                  errors++;                  case XVID_CSP_YV12 :
606                                  if ((flags & XVID_TEST_VERBOSE))                          img.y = convert->input.plane[0];
607                                          printf("%s error: q=%i, i=%i\n", nameB, q, i);                          img.v = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height;
608                          }                          img.u = (uint8_t*)convert->input.plane[0] + convert->input.stride[0]*height + (convert->input.stride[0]/2)*height2;
609                            image_output(&img, width, height, width,
610                                                    (uint8_t**)convert->output.plane, convert->output.stride,
611                                                    convert->output.csp, convert->interlacing);
612                            break;
613    
614                          count++;                  default :
615                  }                          return XVID_ERR_FORMAT;
616          }          }
617    
         printf("%s:\t%i", nameB, (int)(timeB / count));  
         if (errors>0)  
                 printf("\t(%i errors out of %i)", errors, count);  
         printf("\n");  
618    
619            emms();
620          return 0;          return 0;
621  }  }
622    
623    /*****************************************************************************
624     * XviD Global Entry point
625  int xvid_init_test(int flags)   *
626  {   * Well this function initialize all internal function pointers according
627          int cpu_flags;   * to the CPU features forced by the library client or autodetected (depending
628     * on the XVID_CPU_FORCE flag). It also initializes vlc coding tables and all
629          srand(time(0));   * image colorspace transformation tables.
630     *
631          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;  
 }  
632    
633    
634  int  int
635  xvid_init(void *handle,  xvid_global(void *handle,
636                    int opt,                    int opt,
637                    void *param1,                    void *param1,
638                    void *param2)                    void *param2)
639  {  {
640          switch(opt)          switch(opt)
641          {          {
642                  case XVID_INIT_INIT :                  case XVID_GBL_INIT :
643                          return xvid_init_init((XVID_INIT_PARAM*)param1);                          return xvid_gbl_init((xvid_gbl_init_t*)param1);
644    
645                  case XVID_INIT_CONVERT :          case XVID_GBL_INFO :
646                          return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);              return xvid_gbl_info((xvid_gbl_info_t*)param1);
647    
648                  case XVID_INIT_TEST :                  case XVID_GBL_CONVERT :
649                          return xvid_init_test((int)param1);                          return xvid_gbl_convert((xvid_gbl_convert_t*)param1);
650    
651                  default :                  default :
652                          return XVID_ERR_FAIL;                          return XVID_ERR_FAIL;
# Line 955  Line 670 
670                          void *param2)                          void *param2)
671  {  {
672          switch (opt) {          switch (opt) {
         case XVID_DEC_DECODE:  
                 return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);  
   
673          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
674                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((xvid_dec_create_t *) param1);
675    
676          case XVID_DEC_DESTROY:          case XVID_DEC_DESTROY:
677                  return decoder_destroy((DECODER *) handle);                  return decoder_destroy((DECODER *) handle);
678    
679            case XVID_DEC_DECODE:
680                    return decoder_decode((DECODER *) handle, (xvid_dec_frame_t *) param1, (xvid_dec_stats_t*) param2);
681    
682          default:          default:
683                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;
684          }          }
# Line 989  Line 704 
704          switch (opt) {          switch (opt) {
705          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
706    
707                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)                  return enc_encode((Encoder *) handle,
708                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,                                                            (xvid_enc_frame_t *) param1,
709                                                            (XVID_ENC_STATS *) param2);                                                            (xvid_enc_stats_t *) param2);
                 else  
                 return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,  
                                                           (XVID_ENC_STATS *) param2);  
710    
711          case XVID_ENC_CREATE:          case XVID_ENC_CREATE:
712                  return encoder_create((XVID_ENC_PARAM *) param1);                  return enc_create((xvid_enc_create_t *) param1);
713    
714          case XVID_ENC_DESTROY:          case XVID_ENC_DESTROY:
715                  return encoder_destroy((Encoder *) handle);                  return enc_destroy((Encoder *) handle);
716    
717          default:          default:
718                  return XVID_ERR_FAIL;                  return XVID_ERR_FAIL;

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

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