[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.17, Thu Jun 13 21:35:01 2002 UTC revision 1.33.2.4, Wed Sep 25 21:26:36 2002 UTC
# Line 27  Line 27 
27   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
28   *   *
29   ****************************************************************************/   ****************************************************************************/
30    
31  /*****************************************************************************  /*****************************************************************************
32   *   *
33   *  History   *  History
34   *   *
35     *      - 23.06.2002    added XVID_CPU_CHKONLY
36   *  - 17.03.2002        Added interpolate8x8_halfpel_hv_xmm   *  - 17.03.2002        Added interpolate8x8_halfpel_hv_xmm
37   *  - 22.12.2001  API change: added xvid_init() - Isibaar   *  - 22.12.2001  API change: added xvid_init() - Isibaar
38   *  - 16.12.2001        inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>   *  - 16.12.2001        inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>
# Line 50  Line 52 
52  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
53  #include "quant/quant_h263.h"  #include "quant/quant_h263.h"
54  #include "quant/quant_mpeg4.h"  #include "quant/quant_mpeg4.h"
55    #include "motion/motion.h"
56  #include "motion/sad.h"  #include "motion/sad.h"
57  #include "utils/emms.h"  #include "utils/emms.h"
58  #include "utils/timer.h"  #include "utils/timer.h"
59  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
60    
61    #if defined(ARCH_X86) && defined(EXPERIMENTAL_SSE2_CODE)
62    
63    #ifdef WIN32
64    #include <windows.h>
65    #else
66    #include <signal.h>
67    #include <setjmp.h>
68    #endif
69    
70    
71    #ifndef WIN32
72    
73    static jmp_buf mark;
74    
75    static void
76    sigill_handler(int signal)
77    {
78       longjmp(mark, 1);
79    }
80    #endif
81    
82    
83    /*
84    calls the funcptr, and returns whether SIGILL (illegal instruction) was signalled
85    return values:
86    -1 : could not determine
87    0  : SIGILL was *not* signalled
88    1  : SIGILL was signalled
89    */
90    
91    int
92    sigill_check(void (*func)())
93    {
94    #ifdef WIN32
95            _try {
96                    func();
97            }
98            _except(EXCEPTION_EXECUTE_HANDLER) {
99    
100                    if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION)
101                            return 1;
102            }
103            return 0;
104    #else
105        void * old_handler;
106        int jmpret;
107    
108    
109        old_handler = signal(SIGILL, sigill_handler);
110        if (old_handler == SIG_ERR)
111        {
112            return -1;
113        }
114    
115        jmpret = setjmp(mark);
116        if (jmpret == 0)
117        {
118            func();
119        }
120    
121        signal(SIGILL, old_handler);
122    
123        return jmpret;
124    #endif
125    }
126    #endif
127    
128  /*****************************************************************************  /*****************************************************************************
129   * XviD Init Entry point   * XviD Init Entry point
130   *   *
# Line 80  Line 150 
150    
151          init_param = (XVID_INIT_PARAM *) param1;          init_param = (XVID_INIT_PARAM *) param1;
152    
153            /* Inform the client the API version */
154            init_param->api_version = API_VERSION;
155    
156            /* Inform the client the core build - unused because we're still alpha */
157            init_param->core_build = 1000;
158    
159          /* Do we have to force CPU features  ? */          /* Do we have to force CPU features  ? */
160          if ((init_param->cpu_flags & XVID_CPU_FORCE) > 0) {          if ((init_param->cpu_flags & XVID_CPU_FORCE)) {
161    
162                  cpu_flags = init_param->cpu_flags;                  cpu_flags = init_param->cpu_flags;
163    
164          } else {          } else {
165    
 #ifdef ARCH_X86  
166                  cpu_flags = check_cpu_features();                  cpu_flags = check_cpu_features();
167  #else  
168                  cpu_flags = 0;  #if defined(ARCH_X86) && defined(EXPERIMENTAL_SSE2_CODE)
169                    if ((cpu_flags & XVID_CPU_SSE) && sigill_check(sse_os_trigger))
170                            cpu_flags &= ~XVID_CPU_SSE;
171    
172                    if ((cpu_flags & XVID_CPU_SSE2) && sigill_check(sse2_os_trigger))
173                            cpu_flags &= ~XVID_CPU_SSE2;
174  #endif  #endif
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    
186          /* Initialize the function pointers */          /* Initialize the function pointers */
187          idct_int32_init();          idct_int32_init();
188          init_vlc_tables();          init_vlc_tables();
# Line 155  Line 245 
245          /* Functions used in motion estimation algorithms */          /* Functions used in motion estimation algorithms */
246          calc_cbp = calc_cbp_c;          calc_cbp = calc_cbp_c;
247          sad16    = sad16_c;          sad16    = sad16_c;
         sad16bi  = sad16bi_c;  
248          sad8     = sad8_c;          sad8     = sad8_c;
249            sad16bi  = sad16bi_c;
250            sad8bi   = sad8bi_c;
251          dev16    = dev16_c;          dev16    = dev16_c;
252            sad16v   = sad16v_c;
253    
254    //      Halfpel8_Refine = Halfpel8_Refine_c;
255    
256  #ifdef ARCH_X86  #ifdef ARCH_X86
257          if ((cpu_flags & XVID_CPU_MMX) > 0) {          if ((cpu_flags & XVID_CPU_MMX) > 0) {
# Line 184  Line 278 
278                  transfer_8to16copy = transfer_8to16copy_mmx;                  transfer_8to16copy = transfer_8to16copy_mmx;
279                  transfer_16to8copy = transfer_16to8copy_mmx;                  transfer_16to8copy = transfer_16to8copy_mmx;
280                  transfer_8to16sub  = transfer_8to16sub_mmx;                  transfer_8to16sub  = transfer_8to16sub_mmx;
281                    transfer_8to16sub2 = transfer_8to16sub2_mmx;
282                  transfer_16to8add  = transfer_16to8add_mmx;                  transfer_16to8add  = transfer_16to8add_mmx;
283                  transfer8x8_copy   = transfer8x8_copy_mmx;                  transfer8x8_copy   = transfer8x8_copy_mmx;
284    
285    
286                  /* Image Interpolation related functions */                  /* Image Interpolation related functions */
287                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;                  interpolate8x8_halfpel_h  = interpolate8x8_halfpel_h_mmx;
288                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_mmx;
# Line 209  Line 305 
305                  calc_cbp = calc_cbp_mmx;                  calc_cbp = calc_cbp_mmx;
306                  sad16    = sad16_mmx;                  sad16    = sad16_mmx;
307                  sad8     = sad8_mmx;                  sad8     = sad8_mmx;
308                    sad16bi = sad16bi_mmx;
309                    sad8bi  = sad8bi_mmx;
310                  dev16    = dev16_mmx;                  dev16    = dev16_mmx;
311                    sad16v   = sad16v_mmx;
312    
313          }          }
314    
315            /* these 3dnow functions are faster than mmx, but slower than xmm. */
316            if ((cpu_flags & XVID_CPU_3DNOW) > 0) {
317    
318                    /* ME functions */
319                    sad16bi = sad16bi_3dn;
320                    sad8bi  = sad8bi_3dn;
321            }
322    
323    
324          if ((cpu_flags & XVID_CPU_MMXEXT) > 0) {          if ((cpu_flags & XVID_CPU_MMXEXT) > 0) {
325    
326                  /* Inverse DCT */                  /* Inverse DCT */
# Line 223  Line 331 
331                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;                  interpolate8x8_halfpel_v  = interpolate8x8_halfpel_v_xmm;
332                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;                  interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_xmm;
333    
334                    /* Quantization */
335                    dequant_intra = dequant_intra_xmm;
336                    dequant_inter = dequant_inter_xmm;
337    
338                    /* Buffer transfer */
339                    transfer_8to16sub2 = transfer_8to16sub2_xmm;
340    
341                  /* Colorspace transformation */                  /* Colorspace transformation */
342                  yuv_to_yv12 = yuv_to_yv12_xmm;                  yuv_to_yv12 = yuv_to_yv12_xmm;
343    
344                  /* ME functions */                  /* ME functions */
345                  sad16 = sad16_xmm;                  sad16 = sad16_xmm;
346                  sad8  = sad8_xmm;                  sad8  = sad8_xmm;
347                    sad16bi = sad16bi_xmm;
348                    sad8bi  = sad8bi_xmm;
349                  dev16 = dev16_xmm;                  dev16 = dev16_xmm;
350                    sad16v   = sad16v_xmm;
351                    fprintf(stderr,"sad16v=XMM\n");
352    
353          }          }
354    
# Line 244  Line 363 
363          if ((cpu_flags & XVID_CPU_SSE2) > 0) {          if ((cpu_flags & XVID_CPU_SSE2) > 0) {
364  #ifdef EXPERIMENTAL_SSE2_CODE  #ifdef EXPERIMENTAL_SSE2_CODE
365    
366                    calc_cbp = calc_cbp_sse2;
367    
368                  /* Quantization */                  /* Quantization */
369                  quant_intra   = quant_intra_sse2;                  quant_intra   = quant_intra_sse2;
370                  dequant_intra = dequant_intra_sse2;                  dequant_intra = dequant_intra_sse2;
# Line 251  Line 372 
372                  dequant_inter = dequant_inter_sse2;                  dequant_inter = dequant_inter_sse2;
373    
374                  /* ME */                  /* ME */
                 calc_cbp = calc_cbp_sse2;  
375                  sad16    = sad16_sse2;                  sad16    = sad16_sse2;
376                  dev16    = dev16_sse2;                  dev16    = dev16_sse2;
377    
# Line 263  Line 383 
383    
384  #endif  #endif
385    
386    #ifdef ARCH_IA64
387            if ((cpu_flags & XVID_CPU_IA64) > 0) { //use assembler routines?
388              idct_ia64_init();
389              fdct = fdct_ia64;
390              idct = idct_ia64;   //not yet working, crashes
391              interpolate8x8_halfpel_h = interpolate8x8_halfpel_h_ia64;
392              interpolate8x8_halfpel_v = interpolate8x8_halfpel_v_ia64;
393              interpolate8x8_halfpel_hv = interpolate8x8_halfpel_hv_ia64;
394              sad16 = sad16_ia64;
395              sad16bi = sad16bi_ia64;
396              sad8 = sad8_ia64;
397              dev16 = dev16_ia64;
398    //        Halfpel8_Refine = Halfpel8_Refine_ia64;
399              quant_intra = quant_intra_ia64;
400              dequant_intra = dequant_intra_ia64;
401              quant_inter = quant_inter_ia64;
402              dequant_inter = dequant_inter_ia64;
403              transfer_8to16copy = transfer_8to16copy_ia64;
404              transfer_16to8copy = transfer_16to8copy_ia64;
405              transfer_8to16sub = transfer_8to16sub_ia64;
406              transfer_8to16sub2 = transfer_8to16sub2_ia64;
407              transfer_16to8add = transfer_16to8add_ia64;
408              transfer8x8_copy = transfer8x8_copy_ia64;
409              DEBUG("Using IA-64 assembler routines.\n");
410            }
411    #endif
412    
413  #ifdef ARCH_PPC  #ifdef ARCH_PPC
414  #ifdef ARCH_PPC_ALTIVEC  #ifdef ARCH_PPC_ALTIVEC
415          calc_cbp = calc_cbp_altivec;          calc_cbp = calc_cbp_altivec;
# Line 277  Line 424 
424  #endif  #endif
425  #endif  #endif
426    
         /* 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;  
   
427          return XVID_ERR_OK;          return XVID_ERR_OK;
428  }  }
429    
# Line 336  Line 477 
477  {  {
478          switch (opt) {          switch (opt) {
479          case XVID_ENC_ENCODE:          case XVID_ENC_ENCODE:
480    #ifdef BFRAMES
481                    if (((Encoder *) handle)->mbParam.max_bframes >= 0)
482                    return encoder_encode_bframes((Encoder *) handle, (XVID_ENC_FRAME *) param1,
483                                                              (XVID_ENC_STATS *) param2);
484                    else
485    #endif
486                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,                  return encoder_encode((Encoder *) handle, (XVID_ENC_FRAME *) param1,
487                                                            (XVID_ENC_STATS *) param2);                                                            (XVID_ENC_STATS *) param2);
488    

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.33.2.4

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