[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.10, Sat Nov 2 16:11:07 2002 UTC revision 1.33.2.18, Thu Dec 19 00:37:56 2002 UTC
# Line 49  Line 49 
49  #include "dct/fdct.h"  #include "dct/fdct.h"
50  #include "image/colorspace.h"  #include "image/colorspace.h"
51  #include "image/interpolate8x8.h"  #include "image/interpolate8x8.h"
52    #include "image/reduced.h"
53  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
54  #include "utils/mbfunctions.h"  #include "utils/mbfunctions.h"
55  #include "quant/quant_h263.h"  #include "quant/quant_h263.h"
# Line 140  Line 141 
141   *   *
142   ****************************************************************************/   ****************************************************************************/
143    
144  int  
145  xvid_init(void *handle,  static
146                    int opt,  int xvid_init_init(XVID_INIT_PARAM * init_param)
                   void *param1,  
                   void *param2)  
147  {  {
148          int cpu_flags;          int cpu_flags;
         XVID_INIT_PARAM *init_param;  
   
         init_param = (XVID_INIT_PARAM *) param1;  
149    
150          /* Inform the client the API version */          /* Inform the client the API version */
151          init_param->api_version = API_VERSION;          init_param->api_version = API_VERSION;
# Line 239  Line 235 
235          interpolate8x8_avg2 = interpolate8x8_avg2_c;          interpolate8x8_avg2 = interpolate8x8_avg2_c;
236          interpolate8x8_avg4 = interpolate8x8_avg4_c;          interpolate8x8_avg4 = interpolate8x8_avg4_c;
237    
238            /* reduced resoltuion */
239    
240            copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
241            add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
242    #ifdef ARCH_X86
243            vfilter_31 = xvid_VFilter_31_x86;
244            hfilter_31 = xvid_HFilter_31_x86;
245    #else
246            vfilter_31 = xvid_VFilter_31_C;
247            hfilter_31 = xvid_HFilter_31_C;
248    #endif
249            filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;
250            filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;
251    
252          /* Initialize internal colorspace transformation tables */          /* Initialize internal colorspace transformation tables */
253          colorspace_init();          colorspace_init();
254    
255          /* All colorspace transformation functions User Format->YV12 */          /* All colorspace transformation functions User Format->YV12 */
256            yv12_to_yv12    = yv12_to_yv12_c;
257          rgb555_to_yv12 = rgb555_to_yv12_c;          rgb555_to_yv12 = rgb555_to_yv12_c;
258          rgb565_to_yv12 = rgb565_to_yv12_c;          rgb565_to_yv12 = rgb565_to_yv12_c;
259          rgb24_to_yv12  = rgb24_to_yv12_c;          bgr_to_yv12     = bgr_to_yv12_c;
260          rgb32_to_yv12  = rgb32_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
261          yuv_to_yv12    = yuv_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
262            rgba_to_yv12    = rgba_to_yv12_c;
263          yuyv_to_yv12   = yuyv_to_yv12_c;          yuyv_to_yv12   = yuyv_to_yv12_c;
264          uyvy_to_yv12   = uyvy_to_yv12_c;          uyvy_to_yv12   = uyvy_to_yv12_c;
265    
266            rgb555i_to_yv12 = rgb555i_to_yv12_c;
267            rgb565i_to_yv12 = rgb565i_to_yv12_c;
268            bgri_to_yv12    = bgri_to_yv12_c;
269            bgrai_to_yv12   = bgrai_to_yv12_c;
270            abgri_to_yv12   = abgri_to_yv12_c;
271            rgbai_to_yv12   = rgbai_to_yv12_c;
272            yuyvi_to_yv12   = yuyvi_to_yv12_c;
273            uyvyi_to_yv12   = uyvyi_to_yv12_c;
274    
275    
276          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
277          yv12_to_rgb555 = yv12_to_rgb555_c;          yv12_to_rgb555 = yv12_to_rgb555_c;
278          yv12_to_rgb565 = yv12_to_rgb565_c;          yv12_to_rgb565 = yv12_to_rgb565_c;
279          yv12_to_rgb24  = yv12_to_rgb24_c;          yv12_to_bgr     = yv12_to_bgr_c;
280          yv12_to_rgb32  = yv12_to_rgb32_c;          yv12_to_bgra    = yv12_to_bgra_c;
281          yv12_to_abgr  = yv12_to_abgr_c;          yv12_to_abgr  = yv12_to_abgr_c;
282          yv12_to_rgba  = yv12_to_rgba_c;          yv12_to_rgba  = yv12_to_rgba_c;
         yv12_to_yuv    = yv12_to_yuv_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    
286            yv12_to_rgb555i = yv12_to_rgb555i_c;
287            yv12_to_rgb565i = yv12_to_rgb565i_c;
288            yv12_to_bgri    = yv12_to_bgri_c;
289            yv12_to_bgrai   = yv12_to_bgrai_c;
290            yv12_to_abgri   = yv12_to_abgri_c;
291            yv12_to_rgbai   = yv12_to_rgbai_c;
292            yv12_to_yuyvi   = yv12_to_yuyvi_c;
293            yv12_to_uyvyi   = yv12_to_uyvyi_c;
294    
295          /* Functions used in motion estimation algorithms */          /* Functions used in motion estimation algorithms */
296          calc_cbp = calc_cbp_c;          calc_cbp = calc_cbp_c;
297          sad16    = sad16_c;          sad16    = sad16_c;
# Line 274  Line 304 
304  //      Halfpel8_Refine = Halfpel8_Refine_c;  //      Halfpel8_Refine = Halfpel8_Refine_c;
305    
306  #ifdef ARCH_X86  #ifdef ARCH_X86
307    
308            if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
309                    (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
310                    (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))
311            {
312                    /* Restore FPU context : emms_c is a nop functions */
313                    emms = emms_mmx;
314            }
315    
316          if ((cpu_flags & XVID_CPU_MMX) > 0) {          if ((cpu_flags & XVID_CPU_MMX) > 0) {
317    
318                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
319                  fdct = fdct_mmx;                  fdct = fdct_mmx;
320                  idct = idct_mmx;                  idct = idct_mmx;
321    
                 /* To restore FPU context after mmx use */  
                 emms = emms_mmx;  
   
322                  /* Quantization related functions */                  /* Quantization related functions */
323                  quant_intra   = quant_intra_mmx;                  quant_intra   = quant_intra_mmx;
324                  dequant_intra = dequant_intra_mmx;                  dequant_intra = dequant_intra_mmx;
# Line 313  Line 349 
349                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
350                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
351    
352  //              interpolate8x8_avg2 = interpolate8x8_avg2_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
353                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;                  interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
354    
355                  /* Image RGB->YV12 related functions */                  /* reduced resolution */
356                  rgb24_to_yv12 = rgb24_to_yv12_mmx;                  copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
357                  rgb32_to_yv12 = rgb32_to_yv12_mmx;                  add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
358                  yuv_to_yv12   = yuv_to_yv12_mmx;                  hfilter_31 = xvid_HFilter_31_mmx;
359                    filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_mmx;
360                    filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_mmx;
361    
362                    /* image input xxx_to_yv12 related functions */
363                    yv12_to_yv12  = yv12_to_yv12_mmx;
364                    bgr_to_yv12   = bgr_to_yv12_mmx;
365                    bgra_to_yv12  = bgra_to_yv12_mmx;
366                  yuyv_to_yv12  = yuyv_to_yv12_mmx;                  yuyv_to_yv12  = yuyv_to_yv12_mmx;
367                  uyvy_to_yv12  = uyvy_to_yv12_mmx;                  uyvy_to_yv12  = uyvy_to_yv12_mmx;
368    
369                  /* Image YV12->RGB related functions */                  /* image output yv12_to_xxx related functions */
370                  yv12_to_rgb24 = yv12_to_rgb24_mmx;                  yv12_to_bgr   = yv12_to_bgr_mmx;
371                  yv12_to_rgb32 = yv12_to_rgb32_mmx;                  yv12_to_bgra  = yv12_to_bgra_mmx;
372                  yv12_to_yuyv  = yv12_to_yuyv_mmx;                  yv12_to_yuyv  = yv12_to_yuyv_mmx;
373                  yv12_to_uyvy  = yv12_to_uyvy_mmx;                  yv12_to_uyvy  = yv12_to_uyvy_mmx;
374    
375                    yv12_to_yuyvi = yv12_to_yuyvi_mmx;
376                    yv12_to_uyvyi = yv12_to_uyvyi_mmx;
377    
378                  /* Motion estimation related functions */                  /* Motion estimation related functions */
379                  calc_cbp = calc_cbp_mmx;                  calc_cbp = calc_cbp_mmx;
380                  sad16    = sad16_mmx;                  sad16    = sad16_mmx;
# Line 346  Line 392 
392                  /* ME functions */                  /* ME functions */
393                  sad16bi = sad16bi_3dn;                  sad16bi = sad16bi_3dn;
394                  sad8bi  = sad8bi_3dn;                  sad8bi  = sad8bi_3dn;
395    
396                    yuyv_to_yv12  = yuyv_to_yv12_3dn;
397                    uyvy_to_yv12  = uyvy_to_yv12_3dn;
398          }          }
399    
400    
# Line 359  Line 408 
408                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;
409                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
410    
411                    /* reduced resolution */
412                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_xmm;
413                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
414    
415                  /* Quantization */                  /* Quantization */
416                    quant4_intra = quant4_intra_xmm;
417                    quant4_inter = quant4_inter_xmm;
418    
419                  dequant_intra = dequant_intra_xmm;                  dequant_intra = dequant_intra_xmm;
420                  dequant_inter = dequant_inter_xmm;                  dequant_inter = dequant_inter_xmm;
421    
# Line 367  Line 423 
423                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
424    
425                  /* Colorspace transformation */                  /* Colorspace transformation */
426                  yuv_to_yv12 = yuv_to_yv12_xmm;                  yv12_to_yv12  = yv12_to_yv12_xmm;
427                    yuyv_to_yv12  = yuyv_to_yv12_xmm;
428                    uyvy_to_yv12  = uyvy_to_yv12_xmm;
429    
430                  /* ME functions */                  /* ME functions */
431                  sad16 = sad16_xmm;                  sad16 = sad16_xmm;
# Line 386  Line 444 
444                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
445          }          }
446    
447            if ((cpu_flags & XVID_CPU_3DNOWEXT) > 0) {
448    
449                    /* Inverse DCT */
450                    idct =  idct_3dne;
451    
452                    /* Buffer transfer */
453                    transfer_8to16copy =  transfer_8to16copy_3dne;
454                    transfer_16to8copy = transfer_16to8copy_3dne;
455                    transfer_8to16sub =  transfer_8to16sub_3dne;
456                    transfer_8to16sub2 =  transfer_8to16sub2_3dne;
457                    transfer_16to8add = transfer_16to8add_3dne;
458                    transfer8x8_copy = transfer8x8_copy_3dne;
459    
460                    /* Quantization */
461                    dequant4_intra = dequant4_intra_3dne;
462                    dequant4_inter = dequant4_inter_3dne;
463                    quant_intra = quant_intra_3dne;
464                    quant_inter = quant_inter_3dne;
465                    dequant_intra = dequant_intra_3dne;
466                    dequant_inter = dequant_inter_3dne;
467    
468                    /* ME functions */
469                    calc_cbp = calc_cbp_3dne;
470                    sad16 = sad16_3dne;
471                    sad8 = sad8_3dne;
472                    sad16bi = sad16bi_3dne;
473                    sad8bi = sad8bi_3dne;
474                    dev16 = dev16_3dne;
475    
476                    /* Interpolation */
477                    interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
478                    interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
479                    interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
480            }
481    
482    
483          if ((cpu_flags & XVID_CPU_SSE2) > 0) {          if ((cpu_flags & XVID_CPU_SSE2) > 0) {
484  #ifdef EXPERIMENTAL_SSE2_CODE  #ifdef EXPERIMENTAL_SSE2_CODE
485    
# Line 453  Line 547 
547          return XVID_ERR_OK;          return XVID_ERR_OK;
548  }  }
549    
550    
551    
552    static int
553    xvid_init_convert(XVID_INIT_CONVERTINFO* convert)
554    {
555            // const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
556            const int width = convert->width;
557            const int height = convert->height;
558            const int width2 = convert->width/2;
559            const int height2 = convert->height/2;
560            IMAGE img;
561    
562            switch (convert->input.colorspace & ~XVID_CSP_VFLIP)
563            {
564                    case XVID_CSP_YV12 :
565                            img.y = convert->input.y;
566                            img.v = (uint8_t*)convert->input.y + width*height;
567                            img.u = (uint8_t*)convert->input.y + width*height + width2*height2;
568                            image_output(&img, width, height, width,
569                                                    convert->output.y, convert->output.y_stride,
570                                                    convert->output.colorspace, convert->interlacing);
571                            break;
572    
573                    default :
574                            return XVID_ERR_FORMAT;
575            }
576    
577    
578            emms();
579            return XVID_ERR_OK;
580    }
581    
582    
583    int
584    xvid_init(void *handle,
585                      int opt,
586                      void *param1,
587                      void *param2)
588    {
589            switch(opt)
590            {
591                    case XVID_INIT_INIT :
592                            return xvid_init_init((XVID_INIT_PARAM*)param1);
593    
594                    case XVID_INIT_CONVERT :
595                            return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);
596    
597                    default :
598                            return XVID_ERR_FAIL;
599            }
600    }
601    
602  /*****************************************************************************  /*****************************************************************************
603   * XviD Native decoder entry point   * XviD Native decoder entry point
604   *   *
# Line 471  Line 617 
617  {  {
618          switch (opt) {          switch (opt) {
619          case XVID_DEC_DECODE:          case XVID_DEC_DECODE:
620                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1);                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);
621    
622          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
623                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((XVID_DEC_PARAM *) param1);

Legend:
Removed from v.1.33.2.10  
changed lines
  Added in v.1.33.2.18

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