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

流媒体/Mpeg4/MP4

开发平台:

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. //配置MS VC环境 --@lia
  38. #ifdef _MSC_VER
  39. #define inline __inline
  40. #define strcasecmp stricmp
  41. #define strncasecmp strnicmp
  42. #define snprintf _snprintf
  43. #define fseek _fseeki64
  44. #define ftell _ftelli64
  45. #define isfinite _finite
  46. #define strtok_r strtok_s
  47. #define _CRT_SECURE_NO_DEPRECATE
  48. #define X264_VERSION "" // no configure script for msvc
  49. #endif
  50. #if (defined(SYS_OPENBSD) && !defined(isfinite)) || defined(SYS_SunOS)
  51. #define isfinite finite
  52. #endif
  53. #ifdef _WIN32
  54. #define rename(src,dst) (unlink(dst), rename(src,dst)) // POSIX says that rename() removes the destination, but win32 doesn't.
  55. #ifndef strtok_r
  56. #define strtok_r(str,delim,save) strtok(str,delim)
  57. #endif
  58. #endif
  59. //配置MS VC环境 --@lia
  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 ALIGNED_16( var ) DECLARE_ALIGNED( var, 16 )
  66. #define ALIGNED_8( var )  DECLARE_ALIGNED( var, 8 )
  67. #define ALIGNED_4( var )  DECLARE_ALIGNED( var, 4 )
  68. // current arm compilers only maintain 8-byte stack alignment
  69. // and cannot align stack variables to more than 8-bytes
  70. #ifdef ARCH_ARM
  71. #define ALIGNED_ARRAY_16( type, name, sub1, ... )
  72.     ALIGNED_8( uint8_t name##_8 [sizeof(type sub1 __VA_ARGS__) + 8] );
  73.     type (*name) __VA_ARGS__ = (void*)(name##_8 + ((intptr_t)name##_8 & 8))
  74. #else
  75. #define ALIGNED_ARRAY_16( type, name, sub1, ... )
  76.     ALIGNED_16( type name sub1 __VA_ARGS__ )
  77. #endif
  78. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  79. #define UNUSED __attribute__((unused))
  80. #define ALWAYS_INLINE __attribute__((always_inline)) inline
  81. #define NOINLINE __attribute__((noinline))
  82. #define x264_constant_p(x) __builtin_constant_p(x)
  83. #else
  84. #define UNUSED
  85. #define ALWAYS_INLINE inline
  86. #define NOINLINE
  87. #define x264_constant_p(x) 0
  88. #endif
  89. /* threads */
  90. #if defined(SYS_BEOS)
  91. #include <kernel/OS.h>
  92. #define x264_pthread_t               thread_id
  93. static inline int x264_pthread_create( x264_pthread_t *t, void *a, void *(*f)(void *), void *d )
  94. {
  95.      *t = spawn_thread( f, "", 10, d );
  96.      if( *t < B_NO_ERROR )
  97.          return -1;
  98.      resume_thread( *t );
  99.      return 0;
  100. }
  101. #define x264_pthread_join(t,s)       { long tmp; 
  102.                                        wait_for_thread(t,(s)?(long*)(*(s)):&tmp); }
  103. #ifndef usleep
  104. #define usleep(t)                    snooze(t)
  105. #endif
  106. #define HAVE_PTHREAD 1
  107. #elif defined(HAVE_PTHREAD)
  108. #include <pthread.h>
  109. #define USE_REAL_PTHREAD
  110. #else
  111. #define x264_pthread_t               int
  112. #define x264_pthread_create(t,u,f,d) 0
  113. #define x264_pthread_join(t,s)
  114. #endif //SYS_*
  115. #ifdef USE_REAL_PTHREAD
  116. #define x264_pthread_t               pthread_t
  117. #define x264_pthread_create          pthread_create
  118. #define x264_pthread_join            pthread_join
  119. #define x264_pthread_mutex_t         pthread_mutex_t
  120. #define x264_pthread_mutex_init      pthread_mutex_init
  121. #define x264_pthread_mutex_destroy   pthread_mutex_destroy
  122. #define x264_pthread_mutex_lock      pthread_mutex_lock
  123. #define x264_pthread_mutex_unlock    pthread_mutex_unlock
  124. #define x264_pthread_cond_t          pthread_cond_t
  125. #define x264_pthread_cond_init       pthread_cond_init
  126. #define x264_pthread_cond_destroy    pthread_cond_destroy
  127. #define x264_pthread_cond_broadcast  pthread_cond_broadcast
  128. #define x264_pthread_cond_wait       pthread_cond_wait
  129. #define x264_pthread_attr_t          pthread_attr_t
  130. #define x264_pthread_attr_init       pthread_attr_init
  131. #define x264_pthread_attr_destroy    pthread_attr_destroy
  132. #define X264_PTHREAD_MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
  133. #else
  134. #define x264_pthread_mutex_t         int
  135. #define x264_pthread_mutex_init(m,f) 0
  136. #define x264_pthread_mutex_destroy(m)
  137. #define x264_pthread_mutex_lock(m)
  138. #define x264_pthread_mutex_unlock(m)
  139. #define x264_pthread_cond_t          int
  140. #define x264_pthread_cond_init(c,f)  0
  141. #define x264_pthread_cond_destroy(c)
  142. #define x264_pthread_cond_broadcast(c)
  143. #define x264_pthread_cond_wait(c,m)
  144. #define x264_pthread_attr_t          int
  145. #define x264_pthread_attr_init(a)    0
  146. #define x264_pthread_attr_destroy(a)
  147. #define X264_PTHREAD_MUTEX_INITIALIZER 0
  148. #endif
  149. #define WORD_SIZE sizeof(void*)
  150. #if !defined(_WIN64) && !defined(__LP64__)
  151. #if defined(__INTEL_COMPILER)
  152. #define BROKEN_STACK_ALIGNMENT /* define it if stack is not mod16 */
  153. #endif
  154. #endif
  155. #ifdef WORDS_BIGENDIAN
  156. #define endian_fix(x) (x)
  157. #define endian_fix32(x) (x)
  158. #define endian_fix16(x) (x)
  159. #else
  160. #if defined(__GNUC__) && defined(HAVE_MMX)
  161. static ALWAYS_INLINE uint32_t endian_fix32( uint32_t x )
  162. {
  163.     asm("bswap %0":"+r"(x));
  164.     return x;
  165. }
  166. static ALWAYS_INLINE intptr_t endian_fix( intptr_t x )
  167. {
  168.     asm("bswap %0":"+r"(x));
  169.     return x;
  170. }
  171. #elif defined(__GNUC__) && defined(HAVE_ARMV6)
  172. static ALWAYS_INLINE intptr_t endian_fix( intptr_t x )
  173. {
  174.     asm("rev %0, %0":"+r"(x));
  175.     return x;
  176. }
  177. #define endian_fix32 endian_fix
  178. #else
  179. static ALWAYS_INLINE uint32_t endian_fix32( uint32_t x )
  180. {
  181.     return (x<<24) + ((x<<8)&0xff0000) + ((x>>8)&0xff00) + (x>>24);
  182. }
  183. static ALWAYS_INLINE intptr_t endian_fix( intptr_t x )
  184. {
  185.     if( WORD_SIZE == 8 )
  186.         return endian_fix32(x>>32) + ((uint64_t)endian_fix32(x)<<32);
  187.     else
  188.         return endian_fix32(x);
  189. }
  190. #endif
  191. static ALWAYS_INLINE uint16_t endian_fix16( uint16_t x )
  192. {
  193.     return (x<<8)|(x>>8);
  194. }
  195. #endif
  196. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 3)
  197. #define x264_clz(x) __builtin_clz(x)
  198. #else
  199. static int ALWAYS_INLINE x264_clz( uint32_t x )
  200. {
  201.     static uint8_t lut[16] = {4,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0};
  202.     int y, z = ((x - 0x10000) >> 27) & 16;
  203.     x >>= z^16;
  204.     z += y = ((x - 0x100) >> 28) & 8;
  205.     x >>= y^8;
  206.     z += y = ((x - 0x10) >> 29) & 4;
  207.     x >>= y^4;
  208.     return z + lut[x];
  209. }
  210. #endif
  211. #ifdef USE_REAL_PTHREAD
  212. #ifdef SYS_MINGW
  213. #define x264_lower_thread_priority(p)
  214. {
  215.     x264_pthread_t handle = pthread_self();
  216.     struct sched_param sp;
  217.     int policy = SCHED_OTHER;
  218.     pthread_getschedparam( handle, &policy, &sp );
  219.     sp.sched_priority -= p;
  220.     pthread_setschedparam( handle, policy, &sp );
  221. }
  222. #else
  223. #include <unistd.h>
  224. #define x264_lower_thread_priority(p) { UNUSED int nice_ret = nice(p); }
  225. #endif /* USE_REAL_PTHREAD */
  226. #else
  227. #define x264_lower_thread_priority(p)
  228. #endif
  229. #endif /* X264_OSDEP_H */