1 /*****************************************************************************
2 * common.h: h264 encoder
3 *****************************************************************************
4 * Copyright (C) 2007 x264 project
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 *****************************************************************************/
24 #define _LARGEFILE_SOURCE 1
25 #define _FILE_OFFSET_BITS 64
35 #include <io.h> // _setmode()
36 #include <fcntl.h> // _O_BINARY
37 #define inline __inline
38 #define strcasecmp stricmp
39 #define strncasecmp strnicmp
40 #define snprintf _snprintf
41 #define fseek _fseeki64
42 #define ftell _ftelli64
43 #define isfinite _finite
44 #define _CRT_SECURE_NO_DEPRECATE
45 #define X264_VERSION "" // no configure script for msvc
49 #define isfinite finite
51 #if defined(_MSC_VER) || defined(SYS_SunOS) || defined(SYS_MACOSX)
55 #define rename(src,dst) (unlink(dst), rename(src,dst)) // POSIX says that rename() removes the destination, but win32 doesn't.
57 #define strtok_r(str,delim,save) strtok(str,delim)
62 #define DECLARE_ALIGNED( var, n ) __declspec(align(n)) var
64 #define DECLARE_ALIGNED( var, n ) var __attribute__((aligned(n)))
66 #define DECLARE_ALIGNED_16( var ) DECLARE_ALIGNED( var, 16 )
67 #define DECLARE_ALIGNED_8( var ) DECLARE_ALIGNED( var, 8 )
68 #define DECLARE_ALIGNED_4( var ) DECLARE_ALIGNED( var, 4 )
70 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
71 #define UNUSED __attribute__((unused))
72 #define ALWAYS_INLINE __attribute__((always_inline)) inline
73 #define NOINLINE __attribute__((noinline))
76 #define ALWAYS_INLINE inline
82 #include <kernel/OS.h>
83 #define x264_pthread_t thread_id
84 #define x264_pthread_create(t,u,f,d) { *(t)=spawn_thread(f,"",10,d); \
85 resume_thread(*(t)); }
86 #define x264_pthread_join(t,s) { long tmp; \
87 wait_for_thread(t,(s)?(long*)(s):&tmp); }
89 #define usleep(t) snooze(t)
91 #define HAVE_PTHREAD 1
93 #elif defined(HAVE_PTHREAD)
95 #define USE_REAL_PTHREAD
98 #define x264_pthread_t int
99 #define x264_pthread_create(t,u,f,d)
100 #define x264_pthread_join(t,s)
103 #ifdef USE_REAL_PTHREAD
104 #define x264_pthread_t pthread_t
105 #define x264_pthread_create pthread_create
106 #define x264_pthread_join pthread_join
107 #define x264_pthread_mutex_t pthread_mutex_t
108 #define x264_pthread_mutex_init pthread_mutex_init
109 #define x264_pthread_mutex_destroy pthread_mutex_destroy
110 #define x264_pthread_mutex_lock pthread_mutex_lock
111 #define x264_pthread_mutex_unlock pthread_mutex_unlock
112 #define x264_pthread_cond_t pthread_cond_t
113 #define x264_pthread_cond_init pthread_cond_init
114 #define x264_pthread_cond_destroy pthread_cond_destroy
115 #define x264_pthread_cond_broadcast pthread_cond_broadcast
116 #define x264_pthread_cond_wait pthread_cond_wait
118 #define x264_pthread_mutex_t int
119 #define x264_pthread_mutex_init(m,f)
120 #define x264_pthread_mutex_destroy(m)
121 #define x264_pthread_mutex_lock(m)
122 #define x264_pthread_mutex_unlock(m)
123 #define x264_pthread_cond_t int
124 #define x264_pthread_cond_init(c,f)
125 #define x264_pthread_cond_destroy(c)
126 #define x264_pthread_cond_broadcast(c)
127 #define x264_pthread_cond_wait(c,m) usleep(100)