cpu.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:3k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * cpu.c: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  * $Id: cpu.c,v 1.1 2004/06/03 19:27:06 fenrir Exp $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <string.h>
  24. #include "common.h"
  25. #if defined(ARCH_X86) || defined(ARCH_X86_64)
  26. extern int  x264_cpu_cpuid_test( void );
  27. extern uint32_t  x264_cpu_cpuid( uint32_t op, uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx );
  28. extern void x264_emms( void );
  29. uint32_t x264_cpu_detect( void )
  30. {
  31.     uint32_t cpu = 0;
  32.     uint32_t eax, ebx, ecx, edx;
  33.     int      b_amd;
  34.     if( !x264_cpu_cpuid_test() )
  35.     {
  36.         /* No cpuid */
  37.         return 0;
  38.     }
  39.     x264_cpu_cpuid( 0, &eax, &ebx, &ecx, &edx);
  40.     if( eax == 0 )
  41.     {
  42.         return 0;
  43.     }
  44.     b_amd   = (ebx == 0x68747541) && (ecx == 0x444d4163) && (edx == 0x69746e65);
  45.     x264_cpu_cpuid( 1, &eax, &ebx, &ecx, &edx );
  46.     if( (edx&0x00800000) == 0 )
  47.     {
  48.         /* No MMX */
  49.         return 0;
  50.     }
  51.     cpu = X264_CPU_MMX;
  52.     if( (edx&0x02000000) )
  53.     {
  54.         /* SSE - identical to AMD MMX extensions */
  55.         cpu |= X264_CPU_MMXEXT|X264_CPU_SSE;
  56.     }
  57.     if( (edx&0x04000000) )
  58.     {
  59.         /* Is it OK ? */
  60.         cpu |= X264_CPU_SSE2;
  61.     }
  62.     x264_cpu_cpuid( 0x80000000, &eax, &ebx, &ecx, &edx );
  63.     if( eax < 0x80000001 )
  64.     {
  65.         /* no extended capabilities */
  66.         return cpu;
  67.     }
  68.     x264_cpu_cpuid( 0x80000001, &eax, &ebx, &ecx, &edx );
  69.     if( edx&0x80000000 )
  70.     {
  71.         cpu |= X264_CPU_3DNOW;
  72.     }
  73.     if( b_amd && (edx&0x00400000) )
  74.     {
  75.         /* AMD MMX extensions */
  76.         cpu |= X264_CPU_MMXEXT;
  77.     }
  78.     return cpu;
  79. }
  80. void     x264_cpu_restore( uint32_t cpu )
  81. {
  82.     if( cpu&(X264_CPU_MMX|X264_CPU_MMXEXT|X264_CPU_3DNOW|X264_CPU_3DNOWEXT) )
  83.     {
  84.         x264_emms();
  85.     }
  86. }
  87. #elif defined( ARCH_PPC )
  88. #ifdef SYS_MACOSX
  89. #include <sys/sysctl.h>
  90. uint32_t x264_cpu_detect( void )
  91. {
  92.     /* Thank you VLC */
  93.     uint32_t cpu = 0;
  94.     int      selectors[2] = { CTL_HW, HW_VECTORUNIT };
  95.     int      has_altivec = 0;
  96.     size_t   length = sizeof( has_altivec );
  97.     int      error = sysctl( selectors, 2, &has_altivec, &length, NULL, 0 );
  98.     if( error == 0 && has_altivec != 0 )
  99.     {
  100.         cpu |= X264_CPU_ALTIVEC;
  101.     }
  102.     return cpu;
  103. }
  104. #elif defined( SYS_LINUX )
  105. uint32_t x264_cpu_detect( void )
  106. {
  107.     /* FIXME (Linux PPC) */
  108.     return X264_CPU_ALTIVEC;
  109. }
  110. #endif
  111. void     x264_cpu_restore( uint32_t cpu )
  112. {
  113. }
  114. #else
  115. uint32_t x264_cpu_detect( void )
  116. {
  117.     return 0;
  118. }
  119. void     x264_cpu_restore( uint32_t cpu )
  120. {
  121. }
  122. #endif