cpu.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * cpu.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 Loren Merritt <lorenm@u.washington.edu>
  5.  *
  6.  * 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
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  19.  *****************************************************************************/
  20. #ifndef X264_CPU_H
  21. #define X264_CPU_H
  22. uint32_t x264_cpu_detect( void );
  23. int      x264_cpu_num_processors( void );
  24. void     x264_emms( void );
  25. void     x264_cpu_mask_misalign_sse( void );
  26. /* kluge:
  27.  * gcc can't give variables any greater alignment than the stack frame has.
  28.  * We need 16 byte alignment for SSE2, so here we make sure that the stack is
  29.  * aligned to 16 bytes.
  30.  * gcc 4.2 introduced __attribute__((force_align_arg_pointer)) to fix this
  31.  * problem, but I don't want to require such a new version.
  32.  * This applies only to x86_32, since other architectures that need alignment
  33.  * either have ABIs that ensure aligned stack, or don't support it at all. */
  34. #if defined(ARCH_X86) && defined(HAVE_MMX)
  35. int x264_stack_align( void (*func)(), ... );
  36. #define x264_stack_align(func,...) x264_stack_align((void (*)())func, __VA_ARGS__)
  37. #else
  38. #define x264_stack_align(func,...) func(__VA_ARGS__)
  39. #endif
  40. typedef struct {
  41.     const char name[16];
  42.     int flags;
  43. } x264_cpu_name_t;
  44. extern const x264_cpu_name_t x264_cpu_names[];
  45. #endif