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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * osdep.h: h264 encoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2007-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          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., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef X264_OSDEP_H
  24. #define X264_OSDEP_H
  25. #define _LARGEFILE_SOURCE 1
  26. #define _FILE_OFFSET_BITS 64
  27. #include <stdio.h>
  28. #ifdef HAVE_STDINT_H
  29. #include <stdint.h>
  30. #else
  31. #include <inttypes.h>
  32. #endif
  33. #ifdef _WIN32
  34. #include <io.h>    // _setmode()
  35. #include <fcntl.h> // _O_BINARY
  36. #endif
  37. #ifdef _MSC_VER
  38. #define inline __inline
  39. #define strcasecmp stricmp
  40. #define strncasecmp strnicmp
  41. #define snprintf _snprintf
  42. #define fseek _fseeki64
  43. #define ftell _ftelli64
  44. #define isfinite _finite
  45. #define _CRT_SECURE_NO_DEPRECATE
  46. #define X264_VERSION "" // no configure script for msvc
  47. #endif
  48. #if defined(SYS_OPENBSD) || defined(SYS_SunOS)
  49. #define isfinite finite
  50. #endif
  51. #if defined(_MSC_VER) || defined(SYS_SunOS) || defined(SYS_MACOSX)
  52. #define sqrtf sqrt
  53. #endif
  54. #ifdef _WIN32
  55. #define rename(src,dst) (unlink(dst), rename(src,dst)) // POSIX says that rename() removes the destination, but win32 doesn't.
  56. #ifndef strtok_r
  57. #define strtok_r(str,delim,save) strtok(str,delim)
  58. #endif
  59. #endif
  60. #ifdef _MSC_VER
  61. #define DECLARE_ALIGNED( var, n ) __declspec(align(n)) var
  62. #else
  63. #define DECLARE_ALIGNED( var, n ) var __attribute__((aligned(n)))
  64. #endif
  65. #define DECLARE_ALIGNED_16( var ) DECLARE_ALIGNED( var, 16 )
  66. #define DECLARE_ALIGNED_8( var )  DECLARE_ALIGNED( var, 8 )
  67. #define DECLARE_ALIGNED_4( var )  DECLARE_ALIGNED( var, 4 )
  68. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  69. #define UNUSED __attribute__((unused))
  70. #define ALWAYS_INLINE __attribute__((always_inline)) inline
  71. #define NOINLINE __attribute__((noinline))
  72. #else
  73. #define UNUSED
  74. #define ALWAYS_INLINE inline
  75. #define NOINLINE
  76. #endif
  77. /* threads */
  78. #if defined(SYS_BEOS)
  79. #include <kernel/OS.h>
  80. #define x264_pthread_t               thread_id
  81. #define x264_pthread_create(t,u,f,d) { *(t)=spawn_thread(f,"",10,d); 
  82.                                        resume_thread(*(t)); }
  83. #define x264_pthread_join(t,s)       { long tmp; 
  84.                                        wait_for_thread(t,(s)?(long*)(s):&tmp); }
  85. #ifndef usleep
  86. #define usleep(t)                    snooze(t)
  87. #endif
  88. #define HAVE_PTHREAD 1
  89. #elif defined(HAVE_PTHREAD)
  90. #include <pthread.h>
  91. #define USE_REAL_PTHREAD
  92. #else
  93. #define x264_pthread_t               int
  94. #define x264_pthread_create(t,u,f,d)
  95. #define x264_pthread_join(t,s)
  96. #endif //SYS_*
  97. #ifdef USE_REAL_PTHREAD
  98. #define x264_pthread_t               pthread_t
  99. #define x264_pthread_create          pthread_create
  100. #define x264_pthread_join            pthread_join
  101. #define x264_pthread_mutex_t         pthread_mutex_t
  102. #define x264_pthread_mutex_init      pthread_mutex_init
  103. #define x264_pthread_mutex_destroy   pthread_mutex_destroy
  104. #define x264_pthread_mutex_lock      pthread_mutex_lock
  105. #define x264_pthread_mutex_unlock    pthread_mutex_unlock
  106. #define x264_pthread_cond_t          pthread_cond_t
  107. #define x264_pthread_cond_init       pthread_cond_init
  108. #define x264_pthread_cond_destroy    pthread_cond_destroy
  109. #define x264_pthread_cond_broadcast  pthread_cond_broadcast
  110. #define x264_pthread_cond_wait       pthread_cond_wait
  111. #else
  112. #define x264_pthread_mutex_t         int
  113. #define x264_pthread_mutex_init(m,f)
  114. #define x264_pthread_mutex_destroy(m)
  115. #define x264_pthread_mutex_lock(m)
  116. #define x264_pthread_mutex_unlock(m)
  117. #define x264_pthread_cond_t          int
  118. #define x264_pthread_cond_init(c,f)
  119. #define x264_pthread_cond_destroy(c)
  120. #define x264_pthread_cond_broadcast(c)
  121. #define x264_pthread_cond_wait(c,m)
  122. #endif
  123. #define WORD_SIZE sizeof(void*)
  124. #if !defined(_WIN64) && !defined(__LP64__)
  125. #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
  126. #define BROKEN_STACK_ALIGNMENT /* define it if stack is not mod16 */
  127. #endif
  128. #endif
  129. #ifdef WORDS_BIGENDIAN
  130. #define endian_fix(x) (x)
  131. #define endian_fix32(x) (x)
  132. #elif defined(__GNUC__) && defined(HAVE_MMX)
  133. static ALWAYS_INLINE uint32_t endian_fix32( uint32_t x )
  134. {
  135.     asm("bswap %0":"+r"(x));
  136.     return x;
  137. }
  138. static ALWAYS_INLINE intptr_t endian_fix( intptr_t x )
  139. {
  140.     asm("bswap %0":"+r"(x));
  141.     return x;
  142. }
  143. #else
  144. static ALWAYS_INLINE uint32_t endian_fix32( uint32_t x )
  145. {
  146.     return (x<<24) + ((x<<8)&0xff0000) + ((x>>8)&0xff00) + (x>>24);
  147. }
  148. static ALWAYS_INLINE intptr_t endian_fix( intptr_t x )
  149. {
  150.     if( WORD_SIZE == 8 )
  151.         return endian_fix32(x>>32) + ((uint64_t)endian_fix32(x)<<32);
  152.     else
  153.         return endian_fix32(x);
  154. }
  155. #endif
  156. #endif /* X264_OSDEP_H */