[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.1, Mon Sep 23 20:36:01 2002 UTC revision 1.33.2.17, Mon Dec 9 10:47:05 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"
55  #include "quant/quant_h263.h"  #include "quant/quant_h263.h"
56  #include "quant/quant_mpeg4.h"  #include "quant/quant_mpeg4.h"
57  #include "motion/motion.h"  #include "motion/motion.h"
# Line 139  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 216  Line 213 
213          transfer_16to8add  = transfer_16to8add_c;          transfer_16to8add  = transfer_16to8add_c;
214          transfer8x8_copy   = transfer8x8_copy_c;          transfer8x8_copy   = transfer8x8_copy_c;
215    
216            /* Interlacing functions */
217            MBFieldTest = MBFieldTest_c;
218    
219          /* Image interpolation related functions */          /* Image interpolation related functions */
220          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;
221          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;
222          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
223    
224            interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;
225            interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;
226            interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;
227    
228            interpolate8x8_lowpass_h = interpolate8x8_lowpass_h_c;
229            interpolate8x8_lowpass_v = interpolate8x8_lowpass_v_c;
230            interpolate8x8_lowpass_hv = interpolate8x8_lowpass_hv_c;
231    
232            interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_c;
233            interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_c;
234    
235            interpolate8x8_avg2 = interpolate8x8_avg2_c;
236            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_yuv    = yv12_to_yuv_c;          yv12_to_abgr    = yv12_to_abgr_c;
282            yv12_to_rgba    = yv12_to_rgba_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 254  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 282  Line 338 
338                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
339                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
340    
341                    /* Interlacing Functions */
342                    MBFieldTest = MBFieldTest_mmx;
343    
344                  /* Image Interpolation related functions */                  /* Image Interpolation related functions */
345                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;
346                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;
347                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
348    
349                  /* Image RGB->YV12 related functions */                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
350                  rgb24_to_yv12 = rgb24_to_yv12_mmx;                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
351                  rgb32_to_yv12 = rgb32_to_yv12_mmx;  
352                  yuv_to_yv12   = yuv_to_yv12_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
353                    interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
354    
355                    /* reduced resolution */
356                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
357                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
358                    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 308  Line 382 
382                  sad16bi = sad16bi_mmx;                  sad16bi = sad16bi_mmx;
383                  sad8bi  = sad8bi_mmx;                  sad8bi  = sad8bi_mmx;
384                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
385                    sad16v   = sad16v_mmx;
386    
387          }          }
388    
# Line 317  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 330  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                  dequant_intra = dequant_intra_xmm;                  dequant_intra = dequant_intra_xmm;
417                  dequant_inter = dequant_inter_xmm;                  dequant_inter = dequant_inter_xmm;
# Line 338  Line 420 
420                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
421    
422                  /* Colorspace transformation */                  /* Colorspace transformation */
423                  yuv_to_yv12 = yuv_to_yv12_xmm;                  yv12_to_yv12  = yv12_to_yv12_xmm;
424                    yuyv_to_yv12  = yuyv_to_yv12_xmm;
425                    uyvy_to_yv12  = uyvy_to_yv12_xmm;
426    
427                  /* ME functions */                  /* ME functions */
428                  sad16 = sad16_xmm;                  sad16 = sad16_xmm;
# Line 347  Line 431 
431                  sad8bi  = sad8bi_xmm;                  sad8bi  = sad8bi_xmm;
432                  dev16 = dev16_xmm;                  dev16 = dev16_xmm;
433                  sad16v   = sad16v_xmm;                  sad16v   = sad16v_xmm;
                 fprintf(stderr,"sad16v=XMM\n");  
   
434          }          }
435    
436          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {
# Line 426  Line 508 
508          return XVID_ERR_OK;          return XVID_ERR_OK;
509  }  }
510    
511    
512    
513    static int
514    xvid_init_convert(XVID_INIT_CONVERTINFO* convert)
515    {
516            // const int flip1 = (convert->input.colorspace & XVID_CSP_VFLIP) ^ (convert->output.colorspace & XVID_CSP_VFLIP);
517            const int width = convert->width;
518            const int height = convert->height;
519            const int width2 = convert->width/2;
520            const int height2 = convert->height/2;
521            IMAGE img;
522    
523            switch (convert->input.colorspace & ~XVID_CSP_VFLIP)
524            {
525                    case XVID_CSP_YV12 :
526                            img.y = convert->input.y;
527                            img.v = (uint8_t*)convert->input.y + width*height;
528                            img.u = (uint8_t*)convert->input.y + width*height + width2*height2;
529                            image_output(&img, width, height, width,
530                                                    convert->output.y, convert->output.y_stride,
531                                                    convert->output.colorspace, convert->interlacing);
532                            break;
533    
534                    default :
535                            return XVID_ERR_FORMAT;
536            }
537    
538    
539            emms();
540            return XVID_ERR_OK;
541    }
542    
543    
544    int
545    xvid_init(void *handle,
546                      int opt,
547                      void *param1,
548                      void *param2)
549    {
550            switch(opt)
551            {
552                    case XVID_INIT_INIT :
553                            return xvid_init_init((XVID_INIT_PARAM*)param1);
554    
555                    case XVID_INIT_CONVERT :
556                            return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);
557    
558                    default :
559                            return XVID_ERR_FAIL;
560            }
561    }
562    
563  /*****************************************************************************  /*****************************************************************************
564   * XviD Native decoder entry point   * XviD Native decoder entry point
565   *   *
# Line 444  Line 578 
578  {  {
579          switch (opt) {          switch (opt) {
580          case XVID_DEC_DECODE:          case XVID_DEC_DECODE:
581                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1);                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);
582    
583          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
584                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((XVID_DEC_PARAM *) param1);
# Line 476  Line 610 
610  {  {
611          switch (opt) {          switch (opt) {
612          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
613  #ifdef BFRAMES  
614                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)
615                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,
616                                                            (XVID_ENC_STATS *) param2);                                                            (XVID_ENC_STATS *) param2);
617                  else                  else
 #endif  
618                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,
619                                                            (XVID_ENC_STATS *) param2);                                                            (XVID_ENC_STATS *) param2);
620    

Legend:
Removed from v.1.33.2.1  
changed lines
  Added in v.1.33.2.17

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