[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.25, Sun Jul 7 13:21:34 2002 UTC revision 1.45.4.1, Sat May 3 23:23:55 2003 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - Native API implementation  -   *  - Native API implementation  -
5   *   *
  *  This program is an implementation of a part of one or more MPEG-4  
  *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *  to use this software module in hardware or software products are  
  *  advised that its use may infringe existing patents or copyrights, and  
  *  any such use would be at such party's own risk.  The original  
  *  developer of this software module and his/her company, and subsequent  
  *  editors and their companies, will have no liability for use of this  
  *  software or modifications or derivatives thereof.  
  *  
6   *  This program is free software ; you can redistribute it and/or modify   *  This program is free software ; you can redistribute it and/or modify
7   *  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
8   *  the Free Software Foundation ; either version 2 of the License, or   *  the Free Software Foundation ; either version 2 of the License, or
# Line 26  Line 17 
17   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
18   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19   *   *
  ****************************************************************************/  
   
 /*****************************************************************************  
  *  
  *  History  
  *  
  *      - 23.06.2002    added XVID_CPU_CHKONLY  
  *  - 17.03.2002        Added interpolate8x8_halfpel_hv_xmm  
  *  - 22.12.2001  API change: added xvid_init() - Isibaar  
  *  - 16.12.2001        inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
  *  
20   *  $Id$   *  $Id$
21   *   *
22   ****************************************************************************/   ****************************************************************************/
23    
24    #include <stdio.h>
25    #include <stdlib.h>
26    #include <string.h>
27    #include <time.h>
28    
29  #include "xvid.h"  #include "xvid.h"
30  #include "decoder.h"  #include "decoder.h"
31  #include "encoder.h"  #include "encoder.h"
# Line 49  Line 34 
34  #include "dct/fdct.h"  #include "dct/fdct.h"
35  #include "image/colorspace.h"  #include "image/colorspace.h"
36  #include "image/interpolate8x8.h"  #include "image/interpolate8x8.h"
37    #include "image/reduced.h"
38  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
39    #include "utils/mbfunctions.h"
40  #include "quant/quant_h263.h"  #include "quant/quant_h263.h"
41  #include "quant/quant_mpeg4.h"  #include "quant/quant_mpeg4.h"
42    #include "motion/motion.h"
43  #include "motion/sad.h"  #include "motion/sad.h"
44  #include "utils/emms.h"  #include "utils/emms.h"
45  #include "utils/timer.h"  #include "utils/timer.h"
46  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
47    #include "image/qpel.h"
48    
49    #if defined(ARCH_IS_IA32)
50    
51    #if defined(_MSC_VER)
52    #       include <windows.h>
53    #else
54    #       include <signal.h>
55    #       include <setjmp.h>
56    
57            static jmp_buf mark;
58    
59            static void
60            sigill_handler(int signal)
61            {
62               longjmp(mark, 1);
63            }
64    #endif
65    
66    
67    /*
68     * Calls the funcptr, and returns whether SIGILL (illegal instruction) was
69     * signalled
70     *
71     * Return values:
72     *  -1 : could not determine
73     *   0 : SIGILL was *not* signalled
74     *   1 : SIGILL was signalled
75     */
76    
77    int
78    sigill_check(void (*func)())
79    {
80    #if defined(_MSC_VER)
81            _try {
82                    func();
83            }
84            _except(EXCEPTION_EXECUTE_HANDLER) {
85    
86                    if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)
87                            return 1;
88            }
89            return 0;
90    #else
91        void * old_handler;
92        int jmpret;
93    
94    
95        old_handler = signal(SIGILL, sigill_handler);
96        if (old_handler == SIG_ERR)
97        {
98            return -1;
99        }
100    
101        jmpret = setjmp(mark);
102        if (jmpret == 0)
103        {
104            func();
105        }
106    
107        signal(SIGILL, old_handler);
108    
109        return jmpret;
110    #endif
111    }
112    #endif
113    
114    
115    /* detect cpu flags  */
116    static unsigned int
117    detect_cpu_flags()
118    {
119            /* enable native assembly optimizations by default */
120            unsigned int cpu_flags = XVID_CPU_ASM;
121    
122    #if defined(ARCH_IS_IA32)
123            cpu_flags |= check_cpu_features();
124            if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
125                    cpu_flags &= ~XVID_CPU_SSE;
126    
127            if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))
128                    cpu_flags &= ~XVID_CPU_SSE2;
129    #endif
130    
131    #if defined(ARCH_IS_PPC)
132    #if defined(ARCH_IS_PPC_ALTIVEC)
133            cpu_flags |= XVID_CPU_ALTIVEC;
134    #endif
135    #endif
136    
137            return cpu_flags;
138    }
139    
140    
141  /*****************************************************************************  /*****************************************************************************
142   * XviD Init Entry point   * XviD Init Entry point
# Line 71  Line 152 
152   *   *
153   ****************************************************************************/   ****************************************************************************/
154    
155  int  
156  xvid_init(void *handle,  static
157                    int opt,  int xvid_init_init(XVID_INIT_PARAM * init_param)
                   void *param1,  
                   void *param2)  
158  {  {
159          int cpu_flags;          int cpu_flags;
         XVID_INIT_PARAM *init_param;  
   
         init_param = (XVID_INIT_PARAM *) param1;  
160    
161          /* Inform the client the API version */          /* Inform the client the API version */
162          init_param->api_version = API_VERSION;          init_param->api_version = API_VERSION;
# Line 88  Line 164 
164          /* Inform the client the core build - unused because we're still alpha */          /* Inform the client the core build - unused because we're still alpha */
165          init_param->core_build = 1000;          init_param->core_build = 1000;
166    
         if ((init_param->cpu_flags & XVID_CPU_CHKONLY))  
         {  
                 init_param->cpu_flags = check_cpu_features();  
                 return XVID_ERR_OK;  
         }  
   
167          /* Do we have to force CPU features  ? */          /* Do we have to force CPU features  ? */
168          if ((init_param->cpu_flags & XVID_CPU_FORCE) > 0) {          if ((init_param->cpu_flags & XVID_CPU_FORCE)) {
169    
170                  cpu_flags = init_param->cpu_flags;                  cpu_flags = init_param->cpu_flags;
171    
172          } else {          } else {
173    
174                  cpu_flags = check_cpu_features();                  cpu_flags = detect_cpu_flags();
175            }
176    
177            if ((init_param->cpu_flags & XVID_CPU_CHKONLY))
178            {
179                  init_param->cpu_flags = cpu_flags;                  init_param->cpu_flags = cpu_flags;
180                    return XVID_ERR_OK;
181          }          }
182    
183            init_param->cpu_flags = cpu_flags;
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_mmx();
189    
190          /* Initialize the function pointers */          /* Initialize the function pointers */
191          idct_int32_init();          idct_int32_init();
192          init_vlc_tables();          init_vlc_tables();
# Line 132  Line 216 
216          transfer_8to16copy = transfer_8to16copy_c;          transfer_8to16copy = transfer_8to16copy_c;
217          transfer_16to8copy = transfer_16to8copy_c;          transfer_16to8copy = transfer_16to8copy_c;
218          transfer_8to16sub  = transfer_8to16sub_c;          transfer_8to16sub  = transfer_8to16sub_c;
219            transfer_8to16subro  = transfer_8to16subro_c;
220          transfer_8to16sub2 = transfer_8to16sub2_c;          transfer_8to16sub2 = transfer_8to16sub2_c;
221          transfer_16to8add  = transfer_16to8add_c;          transfer_16to8add  = transfer_16to8add_c;
222          transfer8x8_copy   = transfer8x8_copy_c;          transfer8x8_copy   = transfer8x8_copy_c;
223    
224            /* Interlacing functions */
225            MBFieldTest = MBFieldTest_c;
226    
227          /* Image interpolation related functions */          /* Image interpolation related functions */
228          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;          interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_c;
229          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;          interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_c;
230          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;          interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_c;
231    
232            interpolate16x16_lowpass_h = interpolate16x16_lowpass_h_c;
233            interpolate16x16_lowpass_v = interpolate16x16_lowpass_v_c;
234            interpolate16x16_lowpass_hv = interpolate16x16_lowpass_hv_c;
235    
236            interpolate8x8_lowpass_h = interpolate8x8_lowpass_h_c;
237            interpolate8x8_lowpass_v = interpolate8x8_lowpass_v_c;
238            interpolate8x8_lowpass_hv = interpolate8x8_lowpass_hv_c;
239    
240            interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_c;
241            interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_c;
242    
243            interpolate8x8_avg2 = interpolate8x8_avg2_c;
244            interpolate8x8_avg4 = interpolate8x8_avg4_c;
245    
246            /* reduced resoltuion */
247            copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_C;
248            add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_C;
249            vfilter_31 = xvid_VFilter_31_C;
250            hfilter_31 = xvid_HFilter_31_C;
251            filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_C;
252            filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_C;
253    
254          /* Initialize internal colorspace transformation tables */          /* Initialize internal colorspace transformation tables */
255          colorspace_init();          colorspace_init();
256    
257          /* All colorspace transformation functions User Format->YV12 */          /* All colorspace transformation functions User Format->YV12 */
258            yv12_to_yv12    = yv12_to_yv12_c;
259          rgb555_to_yv12 = rgb555_to_yv12_c;          rgb555_to_yv12 = rgb555_to_yv12_c;
260          rgb565_to_yv12 = rgb565_to_yv12_c;          rgb565_to_yv12 = rgb565_to_yv12_c;
261          rgb24_to_yv12  = rgb24_to_yv12_c;          bgr_to_yv12     = bgr_to_yv12_c;
262          rgb32_to_yv12  = rgb32_to_yv12_c;          bgra_to_yv12    = bgra_to_yv12_c;
263          yuv_to_yv12    = yuv_to_yv12_c;          abgr_to_yv12    = abgr_to_yv12_c;
264            rgba_to_yv12    = rgba_to_yv12_c;
265          yuyv_to_yv12   = yuyv_to_yv12_c;          yuyv_to_yv12   = yuyv_to_yv12_c;
266          uyvy_to_yv12   = uyvy_to_yv12_c;          uyvy_to_yv12   = uyvy_to_yv12_c;
267    
268            rgb555i_to_yv12 = rgb555i_to_yv12_c;
269            rgb565i_to_yv12 = rgb565i_to_yv12_c;
270            bgri_to_yv12    = bgri_to_yv12_c;
271            bgrai_to_yv12   = bgrai_to_yv12_c;
272            abgri_to_yv12   = abgri_to_yv12_c;
273            rgbai_to_yv12   = rgbai_to_yv12_c;
274            yuyvi_to_yv12   = yuyvi_to_yv12_c;
275            uyvyi_to_yv12   = uyvyi_to_yv12_c;
276    
277    
278          /* All colorspace transformation functions YV12->User format */          /* All colorspace transformation functions YV12->User format */
279          yv12_to_rgb555 = yv12_to_rgb555_c;          yv12_to_rgb555 = yv12_to_rgb555_c;
280          yv12_to_rgb565 = yv12_to_rgb565_c;          yv12_to_rgb565 = yv12_to_rgb565_c;
281          yv12_to_rgb24  = yv12_to_rgb24_c;          yv12_to_bgr     = yv12_to_bgr_c;
282          yv12_to_rgb32  = yv12_to_rgb32_c;          yv12_to_bgra    = yv12_to_bgra_c;
283          yv12_to_yuv    = yv12_to_yuv_c;          yv12_to_abgr    = yv12_to_abgr_c;
284            yv12_to_rgba    = yv12_to_rgba_c;
285          yv12_to_yuyv   = yv12_to_yuyv_c;          yv12_to_yuyv   = yv12_to_yuyv_c;
286          yv12_to_uyvy   = yv12_to_uyvy_c;          yv12_to_uyvy   = yv12_to_uyvy_c;
287    
288            yv12_to_rgb555i = yv12_to_rgb555i_c;
289            yv12_to_rgb565i = yv12_to_rgb565i_c;
290            yv12_to_bgri    = yv12_to_bgri_c;
291            yv12_to_bgrai   = yv12_to_bgrai_c;
292            yv12_to_abgri   = yv12_to_abgri_c;
293            yv12_to_rgbai   = yv12_to_rgbai_c;
294            yv12_to_yuyvi   = yv12_to_yuyvi_c;
295            yv12_to_uyvyi   = yv12_to_uyvyi_c;
296    
297          /* Functions used in motion estimation algorithms */          /* Functions used in motion estimation algorithms */
298          calc_cbp = calc_cbp_c;          calc_cbp = calc_cbp_c;
299          sad16    = sad16_c;          sad16    = sad16_c;
         sad16bi  = sad16bi_c;  
300          sad8     = sad8_c;          sad8     = sad8_c;
301            sad16bi  = sad16bi_c;
302            sad8bi   = sad8bi_c;
303          dev16    = dev16_c;          dev16    = dev16_c;
304            sad16v   = sad16v_c;
305    
306    /*      Halfpel8_Refine = Halfpel8_Refine_c; */
307    
308    #if defined(ARCH_IS_IA32)
309    
310            if ((cpu_flags & XVID_CPU_ASM))
311            {
312                    vfilter_31 = xvid_VFilter_31_x86;
313                    hfilter_31 = xvid_HFilter_31_x86;
314            }
315    
316            if ((cpu_flags & XVID_CPU_MMX) || (cpu_flags & XVID_CPU_MMXEXT) ||
317                    (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
318                    (cpu_flags & XVID_CPU_SSE) || (cpu_flags & XVID_CPU_SSE2))
319            {
320                    /* Restore FPU context : emms_c is a nop functions */
321                    emms = emms_mmx;
322            }
323    
324  #ifdef ARCH_X86          if ((cpu_flags & XVID_CPU_MMX)) {
325          if ((cpu_flags & XVID_CPU_MMX) > 0) {  
326                    /* Qpel stuff */
327                    xvid_QP_Funcs = &xvid_QP_Funcs_mmx;
328                    xvid_QP_Add_Funcs = &xvid_QP_Add_Funcs_mmx;
329                    xvid_Init_QP_mmx();
330    
331                  /* Forward and Inverse Discrete Cosine Transformation functions */                  /* Forward and Inverse Discrete Cosine Transformation functions */
332                  fdct = fdct_mmx;                  fdct = fdct_mmx;
333                  idct = idct_mmx;                  idct = idct_mmx;
334    
                 /* To restore FPU context after mmx use */  
                 emms = emms_mmx;  
   
335                  /* Quantization related functions */                  /* Quantization related functions */
336                  quant_intra   = quant_intra_mmx;                  quant_intra   = quant_intra_mmx;
337                  dequant_intra = dequant_intra_mmx;                  dequant_intra = dequant_intra_mmx;
# Line 194  Line 347 
347                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
348                  transfer_16to8copy = transfer_16to8copy_mmx;                  transfer_16to8copy = transfer_16to8copy_mmx;
349                  transfer_8to16sub  = transfer_8to16sub_mmx;                  transfer_8to16sub  = transfer_8to16sub_mmx;
350                    transfer_8to16subro  = transfer_8to16subro_mmx;
351                  transfer_8to16sub2 = transfer_8to16sub2_mmx;                  transfer_8to16sub2 = transfer_8to16sub2_mmx;
352                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
353                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
354    
355                    /* Interlacing Functions */
356                    MBFieldTest = MBFieldTest_mmx;
357    
358                  /* Image Interpolation related functions */                  /* Image Interpolation related functions */
359                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;
360                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;
361                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_mmx;
362    
363                  /* Image RGB->YV12 related functions */                  interpolate8x8_6tap_lowpass_h = interpolate8x8_6tap_lowpass_h_mmx;
364                  rgb24_to_yv12 = rgb24_to_yv12_mmx;                  interpolate8x8_6tap_lowpass_v = interpolate8x8_6tap_lowpass_v_mmx;
365                  rgb32_to_yv12 = rgb32_to_yv12_mmx;  
366                  yuv_to_yv12   = yuv_to_yv12_mmx;                  interpolate8x8_avg2 = interpolate8x8_avg2_mmx;
367                    interpolate8x8_avg4 = interpolate8x8_avg4_mmx;
368    
369                    /* reduced resolution */
370                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_mmx;
371                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_mmx;
372                    hfilter_31 = xvid_HFilter_31_mmx;
373                    filter_18x18_to_8x8 = xvid_Filter_18x18_To_8x8_mmx;
374                    filter_diff_18x18_to_8x8 = xvid_Filter_Diff_18x18_To_8x8_mmx;
375    
376                    /* image input xxx_to_yv12 related functions */
377                    yv12_to_yv12  = yv12_to_yv12_mmx;
378                    bgr_to_yv12   = bgr_to_yv12_mmx;
379                    bgra_to_yv12  = bgra_to_yv12_mmx;
380                  yuyv_to_yv12  = yuyv_to_yv12_mmx;                  yuyv_to_yv12  = yuyv_to_yv12_mmx;
381                  uyvy_to_yv12  = uyvy_to_yv12_mmx;                  uyvy_to_yv12  = uyvy_to_yv12_mmx;
382    
383                  /* Image YV12->RGB related functions */                  /* image output yv12_to_xxx related functions */
384                  yv12_to_rgb24 = yv12_to_rgb24_mmx;                  yv12_to_bgr   = yv12_to_bgr_mmx;
385                  yv12_to_rgb32 = yv12_to_rgb32_mmx;                  yv12_to_bgra  = yv12_to_bgra_mmx;
386                  yv12_to_yuyv  = yv12_to_yuyv_mmx;                  yv12_to_yuyv  = yv12_to_yuyv_mmx;
387                  yv12_to_uyvy  = yv12_to_uyvy_mmx;                  yv12_to_uyvy  = yv12_to_uyvy_mmx;
388    
389                    yv12_to_yuyvi = yv12_to_yuyvi_mmx;
390                    yv12_to_uyvyi = yv12_to_uyvyi_mmx;
391    
392                  /* Motion estimation related functions */                  /* Motion estimation related functions */
393                  calc_cbp = calc_cbp_mmx;                  calc_cbp = calc_cbp_mmx;
394                  sad16    = sad16_mmx;                  sad16    = sad16_mmx;
395                  sad8     = sad8_mmx;                  sad8     = sad8_mmx;
396                    sad16bi = sad16bi_mmx;
397                    sad8bi  = sad8bi_mmx;
398                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
399                    sad16v   = sad16v_mmx;
400            }
401    
402            /* these 3dnow functions are faster than mmx, but slower than xmm. */
403            if ((cpu_flags & XVID_CPU_3DNOW)) {
404    
405                    emms = emms_3dn;
406    
407                    /* ME functions */
408                    sad16bi = sad16bi_3dn;
409                    sad8bi  = sad8bi_3dn;
410    
411                    yuyv_to_yv12  = yuyv_to_yv12_3dn;
412                    uyvy_to_yv12  = uyvy_to_yv12_3dn;
413          }          }
414    
415          if ((cpu_flags & XVID_CPU_MMXEXT) > 0) {  
416            if ((cpu_flags & XVID_CPU_MMXEXT)) {
417    
418                  /* Inverse DCT */                  /* Inverse DCT */
419                  idct = idct_xmm;                  idct = idct_xmm;
# Line 235  Line 423 
423                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;
424                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
425    
426                    /* reduced resolution */
427                    copy_upsampled_8x8_16to8 = xvid_Copy_Upsampled_8x8_16To8_xmm;
428                    add_upsampled_8x8_16to8 = xvid_Add_Upsampled_8x8_16To8_xmm;
429    
430                  /* Quantization */                  /* Quantization */
431                    quant4_intra = quant4_intra_xmm;
432                    quant4_inter = quant4_inter_xmm;
433    
434                  dequant_intra = dequant_intra_xmm;                  dequant_intra = dequant_intra_xmm;
435                  dequant_inter = dequant_inter_xmm;                  dequant_inter = dequant_inter_xmm;
436    
# Line 243  Line 438 
438                  transfer_8to16sub2 = transfer_8to16sub2_xmm;                  transfer_8to16sub2 = transfer_8to16sub2_xmm;
439    
440                  /* Colorspace transformation */                  /* Colorspace transformation */
441                  yuv_to_yv12 = yuv_to_yv12_xmm;                  yv12_to_yv12  = yv12_to_yv12_xmm;
442                    yuyv_to_yv12  = yuyv_to_yv12_xmm;
443                    uyvy_to_yv12  = uyvy_to_yv12_xmm;
444    
445                  /* ME functions */                  /* ME functions */
446                  sad16 = sad16_xmm;                  sad16 = sad16_xmm;
                 sad16bi = sad16bi_xmm;  
447                  sad8  = sad8_xmm;                  sad8  = sad8_xmm;
448                    sad16bi = sad16bi_xmm;
449                    sad8bi  = sad8bi_xmm;
450                  dev16 = dev16_xmm;                  dev16 = dev16_xmm;
451                    sad16v   = sad16v_xmm;
452          }          }
453    
454          if ((cpu_flags & XVID_CPU_3DNOW) > 0) {          if ((cpu_flags & XVID_CPU_3DNOW)) {
455    
456                  /* Interpolation */                  /* Interpolation */
457                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;                  interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dn;
# Line 261  Line 459 
459                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dn;
460          }          }
461    
462          if ((cpu_flags & XVID_CPU_SSE2) > 0) {          if ((cpu_flags & XVID_CPU_3DNOWEXT)) {
463  #ifdef EXPERIMENTAL_SSE2_CODE  
464                    /* Inverse DCT */
465                    idct =  idct_3dne;
466    
467                    /* Buffer transfer */
468                    transfer_8to16copy =  transfer_8to16copy_3dne;
469                    transfer_16to8copy = transfer_16to8copy_3dne;
470                    transfer_8to16sub =  transfer_8to16sub_3dne;
471                    transfer_8to16subro =  transfer_8to16subro_3dne;
472                    transfer_8to16sub2 =  transfer_8to16sub2_3dne;
473                    transfer_16to8add = transfer_16to8add_3dne;
474                    transfer8x8_copy = transfer8x8_copy_3dne;
475    
476                    /* Quantization */
477                    dequant4_intra = dequant4_intra_3dne;
478                    dequant4_inter = dequant4_inter_3dne;
479                    quant_intra = quant_intra_3dne;
480                    quant_inter = quant_inter_3dne;
481                    dequant_intra = dequant_intra_3dne;
482                    dequant_inter = dequant_inter_3dne;
483    
484                    /* ME functions */
485                    calc_cbp = calc_cbp_3dne;
486                    sad16 = sad16_3dne;
487                    sad8 = sad8_3dne;
488                    sad16bi = sad16bi_3dne;
489                    sad8bi = sad8bi_3dne;
490                    dev16 = dev16_3dne;
491    
492                    /* Interpolation */
493                    interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_3dne;
494                    interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_3dne;
495                    interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_3dne;
496            }
497    
498    
499            if ((cpu_flags & XVID_CPU_SSE2)) {
500    
501                  calc_cbp = calc_cbp_sse2;                  calc_cbp = calc_cbp_sse2;
502    
# Line 272  Line 506 
506                  quant_inter   = quant_inter_sse2;                  quant_inter   = quant_inter_sse2;
507                  dequant_inter = dequant_inter_sse2;                  dequant_inter = dequant_inter_sse2;
508    
509                  /* ME */  #if defined(EXPERIMENTAL_SSE2_CODE)
510                    /* ME; slower than xmm */
511                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
512                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
513    #endif
514                  /* Forward and Inverse DCT */                  /* Forward and Inverse DCT */
515                  idct  = idct_sse2;                  idct  = idct_sse2;
516                  fdct = fdct_sse2;                  fdct = fdct_sse2;
 #endif  
517          }          }
   
518  #endif  #endif
519    
520  #ifdef ARCH_IA64  #if defined(ARCH_IS_IA64)
521          if ((cpu_flags & XVID_CPU_IA64) > 0) { //use assembler routines?          if ((cpu_flags & XVID_CPU_ASM)) { /* use assembler routines? */
522            idct_ia64_init();            idct_ia64_init();
523            fdct = fdct_ia64;            fdct = fdct_ia64;
524            idct = idct_ia64;   //not yet working, crashes            idct = idct_ia64;   /*not yet working, crashes */
525            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;            interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
526            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;            interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
527            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;            interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
# Line 296  Line 529 
529            sad16bi = sad16bi_ia64;            sad16bi = sad16bi_ia64;
530            sad8 = sad8_ia64;            sad8 = sad8_ia64;
531            dev16 = dev16_ia64;            dev16 = dev16_ia64;
532    /*        Halfpel8_Refine = Halfpel8_Refine_ia64; */
533            quant_intra = quant_intra_ia64;            quant_intra = quant_intra_ia64;
534            dequant_intra = dequant_intra_ia64;            dequant_intra = dequant_intra_ia64;
535            quant_inter = quant_inter_ia64;            quant_inter = quant_inter_ia64;
# Line 306  Line 540 
540            transfer_8to16sub2 = transfer_8to16sub2_ia64;            transfer_8to16sub2 = transfer_8to16sub2_ia64;
541            transfer_16to8add = transfer_16to8add_ia64;            transfer_16to8add = transfer_16to8add_ia64;
542            transfer8x8_copy = transfer8x8_copy_ia64;            transfer8x8_copy = transfer8x8_copy_ia64;
543            DEBUG("Using IA-64 assembler routines.\n");            DPRINTF(DPRINTF_DEBUG, "Using IA-64 assembler routines.");
544          }          }
545  #endif  #endif
546    
547  #ifdef ARCH_PPC  #if defined(ARCH_IS_PPC)
548  #ifdef ARCH_PPC_ALTIVEC          if ((cpu_flags & XVID_CPU_ASM))
549            {
550                    calc_cbp = calc_cbp_ppc;
551            }
552    
553            if ((cpu_flags & XVID_CPU_ALTIVEC))
554            {
555          calc_cbp = calc_cbp_altivec;          calc_cbp = calc_cbp_altivec;
556          fdct = fdct_altivec;          fdct = fdct_altivec;
557          idct = idct_altivec;          idct = idct_altivec;
# Line 319  Line 559 
559          sad16 = sad16_altivec;          sad16 = sad16_altivec;
560          sad8 = sad8_altivec;          sad8 = sad8_altivec;
561          dev16 = dev16_altivec;          dev16 = dev16_altivec;
562  #else          }
563          calc_cbp = calc_cbp_ppc;  #endif
564    
565            return XVID_ERR_OK;
566    }
567    
568    
569    
570    static int
571    xvid_init_convert(XVID_INIT_CONVERTINFO* convert)
572    {
573    /*
574            const int flip1 =
575                    (convert->input.colorspace & XVID_CSP_VFLIP) ^
576                    (convert->output.colorspace & XVID_CSP_VFLIP);
577    */
578            const int width = convert->width;
579            const int height = convert->height;
580            const int width2 = convert->width/2;
581            const int height2 = convert->height/2;
582            IMAGE img;
583    
584            switch (convert->input.colorspace & ~XVID_CSP_VFLIP)
585            {
586                    case XVID_CSP_YV12 :
587                            img.y = convert->input.y;
588                            img.v = (uint8_t*)convert->input.y + width*height;
589                            img.u = (uint8_t*)convert->input.y + width*height + width2*height2;
590                            image_output(&img, width, height, width,
591                                                    convert->output.y, convert->output.y_stride,
592                                                    convert->output.colorspace, convert->interlacing);
593                            break;
594    
595                    default :
596                            return XVID_ERR_FORMAT;
597            }
598    
599    
600            emms();
601            return XVID_ERR_OK;
602    }
603    
604    
605    
606    void fill8(uint8_t * block, int size, int value)
607    {
608            int i;
609            for (i = 0; i < size; i++)
610                    block[i] = value;
611    }
612    
613    void fill16(int16_t * block, int size, int value)
614    {
615            int i;
616            for (i = 0; i < size; i++)
617                    block[i] = value;
618    }
619    
620    #define RANDOM(min,max) min + (rand() % (max-min))
621    
622    void random8(uint8_t * block, int size, int min, int max)
623    {
624            int i;
625            for (i = 0; i < size; i++)
626                    block[i] = RANDOM(min,max);
627    }
628    
629    void random16(int16_t * block, int size, int min, int max)
630    {
631            int i;
632            for (i = 0; i < size; i++)
633                    block[i] = RANDOM(min,max);
634    }
635    
636    int compare16(const int16_t * blockA, const int16_t * blockB, int size)
637    {
638            int i;
639            for (i = 0; i < size; i++)
640                    if (blockA[i] != blockB[i])
641                            return 1;
642    
643            return 0;
644    }
645    
646    int diff16(const int16_t * blockA, const int16_t * blockB, int size)
647    {
648            int i, diff = 0;
649            for (i = 0; i < size; i++)
650                    diff += ABS(blockA[i]-blockB[i]);
651            return diff;
652    }
653    
654    
655    #define XVID_TEST_RANDOM        0x00000001      /* random input data */
656    #define XVID_TEST_VERBOSE       0x00000002      /* verbose error output */
657    
658    
659    #define TEST_FORWARD    0x00000001      /* intra */
660    #define TEST_FDCT  (TEST_FORWARD)
661    #define TEST_IDCT  (0)
662    
663    static int test_transform(void * funcA, void * funcB, const char * nameB,
664                                       int test, int flags)
665    {
666            int i;
667            int64_t timeSTART;
668            int64_t timeA = 0;
669            int64_t timeB = 0;
670            DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);
671            DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);
672            int min, max;
673            int count = 0;
674    
675            int tmp;
676            int min_error = 0x10000*64;
677            int max_error = 0;
678    
679    
680            if ((test & TEST_FORWARD))      /* forward */
681            {
682                    min = -256;
683                    max = 255;
684            }else{          /* inverse */
685                    min = -2048;
686                    max = 2047;
687            }
688    
689            for (i = 0; i < 64*64; i++)
690            {
691                    if ((flags & XVID_TEST_RANDOM))
692                    {
693                            random16(arrayA, 64, min, max);
694                    }else{
695                            fill16(arrayA, 64, i);
696                    }
697                    memcpy(arrayB, arrayA, 64*sizeof(int16_t));
698    
699                    if ((test & TEST_FORWARD))
700                    {
701                            timeSTART = read_counter();
702                            ((fdctFunc*)funcA)(arrayA);
703                            timeA += read_counter() - timeSTART;
704    
705                            timeSTART = read_counter();
706                            ((fdctFunc*)funcB)(arrayB);
707                            timeB += read_counter() - timeSTART;
708                    }
709                    else
710                    {
711                            timeSTART = read_counter();
712                            ((idctFunc*)funcA)(arrayA);
713                            timeA += read_counter() - timeSTART;
714    
715                            timeSTART = read_counter();
716                            ((idctFunc*)funcB)(arrayB);
717                            timeB += read_counter() - timeSTART;
718                    }
719    
720                    tmp = diff16(arrayA, arrayB, 64) / 64;
721                    if (tmp > max_error)
722                            max_error = tmp;
723                    if (tmp < min_error)
724                            min_error = tmp;
725    
726                    count++;
727            }
728    
729            /* print the "average difference" of best/worst transforms */
730            printf("%s:\t%i\t(min_error:%i, max_error:%i)\n", nameB, (int)(timeB / count), min_error, max_error);
731    
732            return 0;
733    }
734    
735    
736    #define TEST_QUANT      0x00000001      /* forward quantization */
737    #define TEST_INTRA      0x00000002      /* intra */
738    #define TEST_QUANT_INTRA        (TEST_QUANT|TEST_INTRA)
739    #define TEST_QUANT_INTER        (TEST_QUANT)
740    #define TEST_DEQUANT_INTRA      (TEST_INTRA)
741    #define TEST_DEQUANT_INTER      (0)
742    
743    static int test_quant(void * funcA, void * funcB, const char * nameB,
744                               int test, int flags)
745    {
746            int q,i;
747            int64_t timeSTART;
748            int64_t timeA = 0;
749            int64_t timeB = 0;
750            int retA = 0, retB = 0;
751            DECLARE_ALIGNED_MATRIX(arrayX, 1, 64, int16_t, CACHE_LINE);
752            DECLARE_ALIGNED_MATRIX(arrayA, 1, 64, int16_t, CACHE_LINE);
753            DECLARE_ALIGNED_MATRIX(arrayB, 1, 64, int16_t, CACHE_LINE);
754            int min, max;
755            int count = 0;
756            int errors = 0;
757    
758            if ((test & TEST_QUANT))        /* quant */
759            {
760                    min = -2048;
761                    max = 2047;
762            }else{          /* dequant */
763                    min = -256;
764                    max = 255;
765            }
766    
767            for (q = 1; q <= 31; q++)       /* quantizer */
768            {
769                    for (i = min; i < max; i++)     /* input coeff */
770                    {
771                            if ((flags & XVID_TEST_RANDOM))
772                            {
773                                    random16(arrayX, 64, min, max);
774                            }else{
775                                    fill16(arrayX, 64, i);
776                            }
777    
778                            if ((test & TEST_INTRA))        /* intra */
779                            {
780                                    timeSTART = read_counter();
781                                    ((quanth263_intraFunc*)funcA)(arrayA, arrayX, q, q);
782                                    timeA += read_counter() - timeSTART;
783    
784                                    timeSTART = read_counter();
785                                    ((quanth263_intraFunc*)funcB)(arrayB, arrayX, q, q);
786                                    timeB += read_counter() - timeSTART;
787                            }
788                            else    /* inter */
789                            {
790                                    timeSTART = read_counter();
791                                    retA = ((quanth263_interFunc*)funcA)(arrayA, arrayX, q);
792                                    timeA += read_counter() - timeSTART;
793    
794                                    timeSTART = read_counter();
795                                    retB = ((quanth263_interFunc*)funcB)(arrayB, arrayX, q);
796                                    timeB += read_counter() - timeSTART;
797                            }
798    
799                            /* compare return value from quant_inter, and compare (de)quantiz'd arrays */
800                            if ( ((test&TEST_QUANT) && !(test&TEST_INTRA) && retA != retB ) ||
801                                    compare16(arrayA, arrayB, 64))
802                            {
803                                    errors++;
804                                    if ((flags & XVID_TEST_VERBOSE))
805                                            printf("%s error: q=%i, i=%i\n", nameB, q, i);
806                            }
807    
808                            count++;
809                    }
810            }
811    
812            printf("%s:\t%i", nameB, (int)(timeB / count));
813            if (errors>0)
814                    printf("\t(%i errors out of %i)", errors, count);
815            printf("\n");
816    
817            return 0;
818    }
819    
820    
821    
822    int xvid_init_test(int flags)
823    {
824    #if defined(ARCH_IS_IA32)
825            int cpu_flags;
826    #endif
827    
828            printf("XviD tests\n\n");
829    
830    #if defined(ARCH_IS_IA32)
831            cpu_flags = detect_cpu_flags();
832    #endif
833    
834            idct_int32_init();
835            emms();
836    
837            srand(time(0));
838    
839            /* fDCT test */
840            printf("--- fdct ---\n");
841                    test_transform(fdct_int32, fdct_int32, "c", TEST_FDCT, flags);
842    
843    #if defined(ARCH_IS_IA32)
844            if (cpu_flags & XVID_CPU_MMX)
845                    test_transform(fdct_int32, fdct_mmx, "mmx", TEST_FDCT, flags);
846            if (cpu_flags & XVID_CPU_SSE2)
847                    test_transform(fdct_int32, fdct_sse2, "sse2", TEST_FDCT, flags);
848    #endif
849    
850            /* iDCT test */
851            printf("\n--- idct ---\n");
852                    test_transform(idct_int32, idct_int32, "c", TEST_IDCT, flags);
853    
854    #if defined(ARCH_IS_IA32)
855            if (cpu_flags & XVID_CPU_MMX)
856                    test_transform(idct_int32, idct_mmx, "mmx", TEST_IDCT, flags);
857            if (cpu_flags & XVID_CPU_MMXEXT)
858                    test_transform(idct_int32, idct_xmm, "xmm", TEST_IDCT, flags);
859            if (cpu_flags & XVID_CPU_3DNOWEXT)
860                    test_transform(idct_int32, idct_3dne, "3dne", TEST_IDCT, flags);
861            if (cpu_flags & XVID_CPU_SSE2)
862                    test_transform(idct_int32, idct_sse2, "sse2", TEST_IDCT, flags);
863    #endif
864    
865            /* Intra quantization test */
866            printf("\n--- quant intra ---\n");
867                    test_quant(quant_intra_c, quant_intra_c, "c", TEST_QUANT_INTRA, flags);
868    
869    #if defined(ARCH_IS_IA32)
870            if (cpu_flags & XVID_CPU_MMX)
871                    test_quant(quant_intra_c, quant_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);
872            if (cpu_flags & XVID_CPU_3DNOWEXT)
873                    test_quant(quant_intra_c, quant_intra_3dne, "3dne", TEST_QUANT_INTRA, flags);
874            if (cpu_flags & XVID_CPU_SSE2)
875                    test_quant(quant_intra_c, quant_intra_sse2, "sse2", TEST_QUANT_INTRA, flags);
876  #endif  #endif
877    
878            /* Inter quantization test */
879            printf("\n--- quant inter ---\n");
880                    test_quant(quant_inter_c, quant_inter_c, "c", TEST_QUANT_INTER, flags);
881    
882    #if defined(ARCH_IS_IA32)
883            if (cpu_flags & XVID_CPU_MMX)
884                    test_quant(quant_inter_c, quant_inter_mmx, "mmx", TEST_QUANT_INTER, flags);
885            if (cpu_flags & XVID_CPU_3DNOWEXT)
886                    test_quant(quant_inter_c, quant_inter_3dne, "3dne", TEST_QUANT_INTER, flags);
887            if (cpu_flags & XVID_CPU_SSE2)
888                    test_quant(quant_inter_c, quant_inter_sse2, "sse2", TEST_QUANT_INTER, flags);
889  #endif  #endif
890    
891            /* Intra dequantization test */
892            printf("\n--- dequant intra ---\n");
893                    test_quant(dequant_intra_c, dequant_intra_c, "c", TEST_DEQUANT_INTRA, flags);
894    
895    #if defined(ARCH_IS_IA32)
896            if (cpu_flags & XVID_CPU_MMX)
897                    test_quant(dequant_intra_c, dequant_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);
898            if (cpu_flags & XVID_CPU_MMXEXT)
899                    test_quant(dequant_intra_c, dequant_intra_xmm, "xmm", TEST_DEQUANT_INTRA, flags);
900            if (cpu_flags & XVID_CPU_3DNOWEXT)
901                    test_quant(dequant_intra_c, dequant_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);
902            if (cpu_flags & XVID_CPU_SSE2)
903                    test_quant(dequant_intra_c, dequant_intra_sse2, "sse2", TEST_DEQUANT_INTRA, flags);
904    #endif
905    
906            /* Inter dequantization test */
907            printf("\n--- dequant inter ---\n");
908                    test_quant(dequant_inter_c, dequant_inter_c, "c", TEST_DEQUANT_INTER, flags);
909    
910    #if defined(ARCH_IS_IA32)
911            if (cpu_flags & XVID_CPU_MMX)
912                    test_quant(dequant_inter_c, dequant_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);
913            if (cpu_flags & XVID_CPU_MMXEXT)
914                    test_quant(dequant_inter_c, dequant_inter_xmm, "xmm", TEST_DEQUANT_INTER, flags);
915            if (cpu_flags & XVID_CPU_3DNOWEXT)
916                    test_quant(dequant_inter_c, dequant_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);
917            if (cpu_flags & XVID_CPU_SSE2)
918                    test_quant(dequant_inter_c, dequant_inter_sse2, "sse2", TEST_DEQUANT_INTER, flags);
919    #endif
920    
921            /* Intra quantization test */
922            printf("\n--- quant4 intra ---\n");
923                    test_quant(quant4_intra_c, quant4_intra_c, "c", TEST_QUANT_INTRA, flags);
924    
925    #if defined(ARCH_IS_IA32)
926            if (cpu_flags & XVID_CPU_MMX)
927                    test_quant(quant4_intra_c, quant4_intra_mmx, "mmx", TEST_QUANT_INTRA, flags);
928            if (cpu_flags & XVID_CPU_MMXEXT)
929                    test_quant(quant4_intra_c, quant4_intra_xmm, "xmm", TEST_QUANT_INTRA, flags);
930    #endif
931    
932            /* Inter quantization test */
933            printf("\n--- quant4 inter ---\n");
934                    test_quant(quant4_inter_c, quant4_inter_c, "c", TEST_QUANT_INTER, flags);
935    
936    #if defined(ARCH_IS_IA32)
937            if (cpu_flags & XVID_CPU_MMX)
938                    test_quant(quant4_inter_c, quant4_inter_mmx, "mmx", TEST_QUANT_INTER, flags);
939            if (cpu_flags & XVID_CPU_MMXEXT)
940                    test_quant(quant4_inter_c, quant4_inter_xmm, "xmm", TEST_QUANT_INTER, flags);
941    #endif
942    
943            /* Intra dequantization test */
944            printf("\n--- dequant4 intra ---\n");
945                    test_quant(dequant4_intra_c, dequant4_intra_c, "c", TEST_DEQUANT_INTRA, flags);
946    
947    #if defined(ARCH_IS_IA32)
948            if (cpu_flags & XVID_CPU_MMX)
949                    test_quant(dequant4_intra_c, dequant4_intra_mmx, "mmx", TEST_DEQUANT_INTRA, flags);
950            if (cpu_flags & XVID_CPU_3DNOWEXT)
951                    test_quant(dequant4_intra_c, dequant4_intra_3dne, "3dne", TEST_DEQUANT_INTRA, flags);
952    #endif
953    
954            /* Inter dequantization test */
955            printf("\n--- dequant4 inter ---\n");
956                    test_quant(dequant4_inter_c, dequant4_inter_c, "c", TEST_DEQUANT_INTER, flags);
957    
958    #if defined(ARCH_IS_IA32)
959            if (cpu_flags & XVID_CPU_MMX)
960                    test_quant(dequant4_inter_c, dequant4_inter_mmx, "mmx", TEST_DEQUANT_INTER, flags);
961            if (cpu_flags & XVID_CPU_3DNOWEXT)
962                    test_quant(dequant4_inter_c, dequant4_inter_3dne, "3dne", TEST_DEQUANT_INTER, flags);
963    #endif
964    
965            emms();
966    
967          return XVID_ERR_OK;          return XVID_ERR_OK;
968  }  }
969    
970    
971    int
972    xvid_init(void *handle,
973                      int opt,
974                      void *param1,
975                      void *param2)
976    {
977            switch(opt)
978            {
979                    case XVID_INIT_INIT :
980                            return xvid_init_init((XVID_INIT_PARAM*)param1);
981    
982                    case XVID_INIT_CONVERT :
983                            return xvid_init_convert((XVID_INIT_CONVERTINFO*)param1);
984    
985                    case XVID_INIT_TEST :
986                    {
987                            ptr_t flags = (ptr_t)param1;
988                            return xvid_init_test((int)flags);
989                    }
990                    default :
991                            return XVID_ERR_FAIL;
992            }
993    }
994    
995  /*****************************************************************************  /*****************************************************************************
996   * XviD Native decoder entry point   * XviD Native decoder entry point
997   *   *
# Line 345  Line 1010 
1010  {  {
1011          switch (opt) {          switch (opt) {
1012          case XVID_DEC_DECODE:          case XVID_DEC_DECODE:
1013                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1);                  return decoder_decode((DECODER *) handle, (XVID_DEC_FRAME *) param1, (XVID_DEC_STATS*) param2);
1014    
1015          case XVID_DEC_CREATE:          case XVID_DEC_CREATE:
1016                  return decoder_create((XVID_DEC_PARAM *) param1);                  return decoder_create((XVID_DEC_PARAM *) param1);
# Line 377  Line 1042 
1042  {  {
1043          switch (opt) {          switch (opt) {
1044          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
1045  #ifdef BFRAMES  
1046                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)                  if (((Encoder *) handle)->mbParam.max_bframes >= 0)
1047                  return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,                          return encoder_encode_bframes((Encoder *) handle,
1048                                                                                      (XVID_ENC_FRAME *) param1,
1049                                                            (XVID_ENC_STATS *) param2);                                                            (XVID_ENC_STATS *) param2);
1050                  else                  else
1051  #endif                          return encoder_encode((Encoder *) handle,
1052                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,                                                                    (XVID_ENC_FRAME *) param1,
1053                                                            (XVID_ENC_STATS *) param2);                                                            (XVID_ENC_STATS *) param2);
1054    
1055          case XVID_ENC_CREATE:          case XVID_ENC_CREATE:

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.45.4.1

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