]> git.sesse.net Git - vlc/blob - include/vlc_common.h
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / include / vlc_common.h
1 /*****************************************************************************
2  * common.h: common definitions
3  * Collection of useful common types and macros definitions
4  *****************************************************************************
5  * Copyright (C) 1998, 1999, 2000 VideoLAN
6  * $Id: vlc_common.h,v 1.10 2002/07/20 18:01:42 sam Exp $
7  *
8  * Authors: Samuel Hocevar <sam@via.ecp.fr>
9  *          Vincent Seguin <seguin@via.ecp.fr>
10  *          Gildas Bazin <gbazin@netcourrier.com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Compiler-specific workarounds
29  *****************************************************************************/
30 #if defined( __BORLANDC__ )
31 #   undef HAVE_VARIADIC_MACROS
32 #   undef HAVE_STDINT_H
33 #endif
34
35 /*****************************************************************************
36  * Required system headers
37  *****************************************************************************/
38 #ifdef HAVE_STRING_H
39 #   include <string.h>                                         /* strerror() */
40 #endif
41
42 #ifdef HAVE_SYS_TYPES_H
43 #   include <sys/types.h>
44 #endif
45
46 /*****************************************************************************
47  * Basic types definitions
48  *****************************************************************************/
49 #ifdef HAVE_STDINT_H
50 #   include <stdint.h>
51     typedef uint8_t             u8;
52     typedef int8_t              s8;
53
54     typedef uint16_t            u16;
55     typedef int16_t             s16;
56
57     typedef uint32_t            u32;
58     typedef int32_t             s32;
59
60     typedef uint64_t            u64;
61     typedef int64_t             s64;
62 #else
63     typedef unsigned char       u8;
64     typedef signed char         s8;
65
66     typedef unsigned short      u16;
67     typedef signed short        s16;
68
69     typedef unsigned int        u32;
70     typedef signed int          s32;
71
72 #   if defined( _MSC_VER ) || ( defined( WIN32 ) && !defined( __MINGW32__ ) )
73     typedef unsigned __int64    u64;
74     typedef signed __int64      s64;
75 #   else
76     typedef unsigned long long  u64;
77     typedef signed long long    s64;
78 #   endif
79 #endif
80
81 typedef u8                      byte_t;
82
83 /* ptrdiff_t definition */
84 #ifdef HAVE_STDDEF_H
85 #   include <stddef.h>
86 #else
87 #   include <malloc.h>
88 #   ifndef _PTRDIFF_T
89 #       define _PTRDIFF_T
90 /* Not portable in a 64-bit environment. */
91 typedef int                 ptrdiff_t;
92 #   endif
93 #endif
94
95 #if defined( WIN32 )
96 typedef int                 ssize_t;
97 #endif
98
99 /* Counter for statistics and profiling */
100 typedef unsigned long       count_t;
101
102 /* DCT elements types */
103 typedef s16                 dctelem_t;
104
105 /* Video buffer types */
106 typedef u8                  yuv_data_t;
107
108 /*****************************************************************************
109  * mtime_t: high precision date or time interval
110  *****************************************************************************
111  * Store an high precision date or time interval. The maximum precision is the
112  * micro-second, and a 64 bits integer is used to avoid any overflow (maximum
113  * time interval is then 292271 years, which should be long enough for any
114  * video). Date are stored as a time interval since a common date.
115  * Note that date and time intervals can be manipulated using regular
116  * arithmetic operators, and that no special functions are required.
117  *****************************************************************************/
118 typedef s64 mtime_t;
119
120 /*****************************************************************************
121  * Classes declaration
122  *****************************************************************************/
123
124 /* Messages */
125 VLC_DECLARE_STRUCT(msg_bank_t)
126 VLC_DECLARE_STRUCT(msg_subscription_t)
127
128 /* Playlist */
129 VLC_DECLARE_STRUCT(playlist_t)
130 VLC_DECLARE_STRUCT(playlist_item_t)
131
132 /* Modules */
133 VLC_DECLARE_STRUCT(module_bank_t)
134 VLC_DECLARE_STRUCT(module_t)
135 VLC_DECLARE_STRUCT(module_config_t)
136 VLC_DECLARE_STRUCT(module_symbols_t)
137 VLC_DECLARE_STRUCT(module_functions_t)
138
139 /* Interface */
140 VLC_DECLARE_STRUCT(intf_thread_t)
141 VLC_DECLARE_STRUCT(intf_sys_t)
142 VLC_DECLARE_STRUCT(intf_console_t)
143 VLC_DECLARE_STRUCT(intf_msg_t)
144 VLC_DECLARE_STRUCT(intf_channel_t)
145
146 /* Input */
147 VLC_DECLARE_STRUCT(input_thread_t)
148 VLC_DECLARE_STRUCT(input_channel_t)
149 VLC_DECLARE_STRUCT(input_cfg_t)
150 VLC_DECLARE_STRUCT(input_area_t)
151 VLC_DECLARE_STRUCT(input_buffers_t)
152 VLC_DECLARE_STRUCT(input_socket_t)
153
154 /* Audio */
155 VLC_DECLARE_STRUCT(aout_thread_t)
156 VLC_DECLARE_STRUCT(aout_sys_t)
157 VLC_DECLARE_STRUCT(aout_fifo_t)
158
159 /* Video */
160 VLC_DECLARE_STRUCT(vout_thread_t)
161 VLC_DECLARE_STRUCT(vout_font_t)
162 VLC_DECLARE_STRUCT(vout_sys_t)
163 VLC_DECLARE_STRUCT(chroma_sys_t)
164 VLC_DECLARE_STRUCT(picture_t)
165 VLC_DECLARE_STRUCT(picture_sys_t)
166 VLC_DECLARE_STRUCT(picture_heap_t)
167 VLC_DECLARE_STRUCT(subpicture_t)
168 VLC_DECLARE_STRUCT(subpicture_sys_t)
169
170 /* Decoders */
171 VLC_DECLARE_STRUCT(decoder_fifo_t)
172
173 /* Misc */
174 VLC_DECLARE_STRUCT(macroblock_t)
175 VLC_DECLARE_STRUCT(data_packet_t)
176 VLC_DECLARE_STRUCT(data_buffer_t)
177 VLC_DECLARE_STRUCT(downmix_t)
178 VLC_DECLARE_STRUCT(imdct_t)
179 VLC_DECLARE_STRUCT(complex_t)
180 VLC_DECLARE_STRUCT(dm_par_t)
181 VLC_DECLARE_STRUCT(es_descriptor_t)
182 VLC_DECLARE_STRUCT(pgrm_descriptor_t)
183 VLC_DECLARE_STRUCT(stream_descriptor_t)
184 VLC_DECLARE_STRUCT(stream_position_t)
185 VLC_DECLARE_STRUCT(stream_ctrl_t)
186 VLC_DECLARE_STRUCT(pes_packet_t)
187 VLC_DECLARE_STRUCT(bit_stream_t)
188 VLC_DECLARE_STRUCT(network_socket_t)
189 VLC_DECLARE_STRUCT(iso639_lang_t)
190
191 /*****************************************************************************
192  * Plug-in stuff
193  *****************************************************************************/
194 #ifndef __PLUGIN__
195 #   define VLC_EXPORT( type, name, args ) type name args;
196 #else
197 #   define VLC_EXPORT( type, name, args ) ;
198     extern module_symbols_t* p_symbols;
199 #endif
200
201 /*****************************************************************************
202  * OS-specific headers and thread types
203  *****************************************************************************/
204 #if defined( WIN32 )
205 #   define WIN32_LEAN_AND_MEAN
206 #   include <windows.h>
207 #endif
208
209 #include "vlc_threads.h"
210
211 /*****************************************************************************
212  * Common structure members
213  *****************************************************************************/
214
215 /* VLC_COMMON_MEMBERS : members common to all basic vlc objects */
216 #define VLC_COMMON_MEMBERS                                                  \
217     int   i_object_id;                                                      \
218     int   i_object_type;                                                    \
219     char *psz_object_type;                                                  \
220     char *psz_object_name;                                                  \
221                                                                             \
222     /* Thread properties, if any */                                         \
223     vlc_bool_t   b_thread;                                                  \
224     vlc_thread_t thread_id;                                                 \
225                                                                             \
226     /* Object access lock */                                                \
227     vlc_mutex_t  object_lock;                                               \
228     vlc_cond_t   object_wait;                                               \
229                                                                             \
230     volatile vlc_bool_t b_error;                    /* set by the object */ \
231     volatile vlc_bool_t b_die;                     /* set by the outside */ \
232     volatile vlc_bool_t b_dead;                     /* set by the object */ \
233                                                                             \
234     vlc_t *         p_vlc;                           /* root of all evil */ \
235                                                                             \
236     volatile int    i_refcount;                                             \
237     vlc_object_t ** pp_parents;                           /* our parents */ \
238     volatile int    i_parents;                                              \
239     vlc_object_t ** pp_children;                         /* our children */ \
240     volatile int    i_children;                                             \
241                                                                             \
242     /* Just a reminder so that people don't cast garbage */                 \
243     int be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                        \
244
245 /* The real vlc_object_t type. Yes, it's that simple :-) */
246 struct vlc_object_t
247 {
248     VLC_COMMON_MEMBERS
249 };
250
251 /* CAST_TO_VLC_OBJECT: attempt at doing a clever cast */
252 #define CAST_TO_VLC_OBJECT( x ) \
253     ((vlc_object_t *)(x))+0*(x)->be_sure_to_add_VLC_COMMON_MEMBERS_to_struct
254
255 /*****************************************************************************
256  * Macros and inline functions
257  *****************************************************************************/
258 #ifdef NTOHL_IN_SYS_PARAM_H
259 #   include <sys/param.h>
260
261 #elif !defined(WIN32) /* NTOHL_IN_SYS_PARAM_H || WIN32 */
262 #   include <netinet/in.h>
263
264 #endif /* NTOHL_IN_SYS_PARAM_H || WIN32 */
265
266 /* CEIL: division with round to nearest greater integer */
267 #define CEIL(n, d)  ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
268
269 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
270 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
271
272 /* __MAX and __MIN: self explanatory */
273 #ifndef __MAX
274 #   define __MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
275 #endif
276 #ifndef __MIN
277 #   define __MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
278 #endif
279
280 /* MSB (big endian)/LSB (little endian) conversions - network order is always
281  * MSB, and should be used for both network communications and files. Note that
282  * byte orders other than little and big endians are not supported, but only
283  * the VAX seems to have such exotic properties. */
284 static inline u16 U16_AT( void * _p )
285 {
286     u8 * p = (u8 *)_p;
287     return ( ((u16)p[0] << 8) | p[1] );
288 }
289 static inline u32 U32_AT( void * _p )
290 {
291     u8 * p = (u8 *)_p;
292     return ( ((u32)p[0] << 24) | ((u32)p[1] << 16) | ((u32)p[2] << 8) | p[3] );
293 }
294 static inline u64 U64_AT( void * _p )
295 {
296     u8 * p = (u8 *)_p;
297     return ( ((u64)p[0] << 56) | ((u64)p[1] << 48) | ((u64)p[2] << 40) 
298               | ((u64)p[3] << 32) | ((u64)p[4] << 24) | ((u64)p[5] << 16)
299               | ((u64)p[6] << 8) | p[7] );
300 }
301 #if WORDS_BIGENDIAN
302 #   define hton16(i)   ( i )
303 #   define hton32(i)   ( i )
304 #   define hton64(i)   ( i )
305 #   define ntoh16(i)   ( i )
306 #   define ntoh32(i)   ( i )
307 #   define ntoh64(i)   ( i )
308 #else
309 #   define hton16(i)   U16_AT(&i)
310 #   define hton32(i)   U32_AT(&i)
311 #   define hton64(i)   U64_AT(&i)
312 #   define ntoh16(i)   U16_AT(&i)
313 #   define ntoh32(i)   U32_AT(&i)
314 #   define ntoh64(i)   U64_AT(&i)
315 #endif
316
317 /* Alignment of critical static data structures */
318 #ifdef ATTRIBUTE_ALIGNED_MAX
319 #   define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
320 #else
321 #   define ATTR_ALIGN(align)
322 #endif
323
324 /* Alignment of critical dynamic data structure
325  *
326  * Not all platforms support memalign so we provide a vlc_memalign wrapper
327  * void *vlc_memalign( size_t align, size_t size, void **pp_orig )
328  * *pp_orig is the pointer that has to be freed afterwards.
329  */
330 #if 0
331 #ifdef HAVE_POSIX_MEMALIGN
332 #   define vlc_memalign(align,size,pp_orig) \
333     ( !posix_memalign( pp_orig, align, size ) ? *(pp_orig) : NULL )
334 #endif
335 #endif
336 #ifdef HAVE_MEMALIGN
337     /* Some systems have memalign() but no declaration for it */
338     void * memalign( size_t align, size_t size );
339
340 #   define vlc_memalign(pp_orig,align,size) \
341     ( *(pp_orig) = memalign( align, size ) )
342
343 #else /* We don't have any choice but to align manually */
344 #   define vlc_memalign(pp_orig,align,size) \
345     (( *(pp_orig) = malloc( size + align - 1 )) \
346         ? (void *)( (((unsigned long)*(pp_orig)) + (unsigned long)(align-1) ) \
347                        & (~(unsigned long)(align-1)) ) \
348         : NULL )
349
350 #endif
351
352 /* strndup (defined in src/misc/extras.c) */
353 #ifndef HAVE_STRNDUP
354 char * strndup( const char *s, size_t n );
355 #endif
356
357
358 #define I64C(x)         x##LL
359
360 #ifdef WIN32
361 /* win32, cl and icl support */
362 #   if defined( _MSC_VER ) || !defined( __MINGW32__ )
363 #       define __attribute__(x)
364 #       define __inline__      __inline
365 #       define strncasecmp     strnicmp
366 #       define strcasecmp      stricmp
367 #       define S_IFBLK         0x3000  /* Block */
368 #       define S_ISBLK(m)      (0)
369 #       define S_ISCHR(m)      (0)
370 #       define S_ISFIFO(m)     (((m)&_S_IFMT) == _S_IFIFO)
371 #       define S_ISREG(m)      (((m)&_S_IFMT) == _S_IFREG)
372 #       undef I64C
373 #       define I64C(x)         x##i64
374 #   endif
375
376 /* several type definitions */
377 #   if defined( __MINGW32__ )
378 #       if !defined( _OFF_T_ )
379 typedef long long _off_t;
380 typedef _off_t off_t;
381 #           define _OFF_T_
382 #       else
383 #           define off_t long long
384 #       endif
385 #   endif
386
387 #   if defined( _MSC_VER )
388 #       if !defined( _OFF_T_DEFINED )
389 typedef __int64 off_t;
390 #           define _OFF_T_DEFINED
391 #       else
392 #           define off_t __int64
393 #       endif
394 #   endif
395
396 #   if defined( __BORLANDC__ )
397 #       undef off_t
398 #       define off_t unsigned __int64
399 #   endif
400
401 #   ifndef O_NONBLOCK
402 #       define O_NONBLOCK 0
403 #   endif
404
405 #   ifndef snprintf
406 #       define snprintf _snprintf  /* snprintf not defined in mingw32 (bug?) */
407 #   endif
408
409 #endif
410
411 /*****************************************************************************
412  * CPU capabilities
413  *****************************************************************************/
414 #define CPU_CAPABILITY_NONE    0
415 #define CPU_CAPABILITY_486     (1<<0)
416 #define CPU_CAPABILITY_586     (1<<1)
417 #define CPU_CAPABILITY_PPRO    (1<<2)
418 #define CPU_CAPABILITY_MMX     (1<<3)
419 #define CPU_CAPABILITY_3DNOW   (1<<4)
420 #define CPU_CAPABILITY_MMXEXT  (1<<5)
421 #define CPU_CAPABILITY_SSE     (1<<6)
422 #define CPU_CAPABILITY_ALTIVEC (1<<16)
423 #define CPU_CAPABILITY_FPU     (1<<31)
424
425 /*****************************************************************************
426  * I18n stuff
427  *****************************************************************************/
428 #ifndef PACKAGE /* Borland C++ uses this ! */
429 #define PACKAGE VLC_PACKAGE
430 #endif
431 #define VERSION VLC_VERSION
432
433 #if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT ) && !defined( __BORLANDC__ ) && !defined( MODULE_NAME_IS_gnome )
434 #   include <libintl.h>
435 #   undef _
436 #   define _(String) dgettext (PACKAGE, String)
437 #   ifdef gettext_noop
438 #       define N_(String) gettext_noop (String)
439 #   else
440 #       define N_(String) (String)
441 #   endif
442 #elif !defined( MODULE_NAME_IS_gnome )
443 #   define _(String) (String)
444 #   define N_(String) (String)
445 #endif
446
447 /*****************************************************************************
448  * Plug-in stuff
449  *****************************************************************************/
450 #include "vlc_symbols.h"