]> git.sesse.net Git - vlc/blob - include/vlc_common.h
* ./bootstrap : Fixed an issue with old shell versions
[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.25 2002/08/29 23:53:22 massiot 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  * Required vlc headers
29  *****************************************************************************/
30 #if defined( __BORLANDC__ )
31 #   undef PACKAGE
32 #endif
33
34 #include "config.h"
35
36 #if defined( __BORLANDC__ )
37 #   undef HAVE_VARIADIC_MACROS
38 #   undef HAVE_STDINT_H
39 #endif
40
41 #include "vlc_config.h"
42 #include "modules_inner.h"
43
44 /*****************************************************************************
45  * Required system headers
46  *****************************************************************************/
47 #ifdef HAVE_STRING_H
48 #   include <string.h>                                         /* strerror() */
49 #endif
50
51 #ifdef HAVE_SYS_TYPES_H
52 #   include <sys/types.h>
53 #endif
54
55 /*****************************************************************************
56  * Basic types definitions
57  *****************************************************************************/
58 #ifdef HAVE_STDINT_H
59 #   include <stdint.h>
60     typedef uint8_t             u8;
61     typedef int8_t              s8;
62
63     typedef uint16_t            u16;
64     typedef int16_t             s16;
65
66     typedef uint32_t            u32;
67     typedef int32_t             s32;
68
69     typedef uint64_t            u64;
70     typedef int64_t             s64;
71 #else
72     typedef unsigned char       u8;
73     typedef signed char         s8;
74
75     typedef unsigned short      u16;
76     typedef signed short        s16;
77
78     typedef unsigned int        u32;
79     typedef signed int          s32;
80
81 #   if defined( _MSC_VER ) || ( defined( WIN32 ) && !defined( __MINGW32__ ) )
82     typedef unsigned __int64    u64;
83     typedef signed __int64      s64;
84 #   else
85     typedef unsigned long long  u64;
86     typedef signed long long    s64;
87 #   endif
88 #endif
89
90 typedef u8                      byte_t;
91
92 /* ptrdiff_t definition */
93 #ifdef HAVE_STDDEF_H
94 #   include <stddef.h>
95 #else
96 #   include <malloc.h>
97 #   ifndef _PTRDIFF_T
98 #       define _PTRDIFF_T
99 /* Not portable in a 64-bit environment. */
100 typedef int                 ptrdiff_t;
101 #   endif
102 #endif
103
104 #if defined( WIN32 )
105 typedef int                 ssize_t;
106 #endif
107
108 /* Counter for statistics and profiling */
109 typedef unsigned long       count_t;
110
111 /* DCT elements types */
112 typedef s16                 dctelem_t;
113
114 /* Video buffer types */
115 typedef u8                  yuv_data_t;
116
117 /*****************************************************************************
118  * mtime_t: high precision date or time interval
119  *****************************************************************************
120  * Store an high precision date or time interval. The maximum precision is the
121  * micro-second, and a 64 bits integer is used to avoid any overflow (maximum
122  * time interval is then 292271 years, which should be long enough for any
123  * video). Date are stored as a time interval since a common date.
124  * Note that date and time intervals can be manipulated using regular
125  * arithmetic operators, and that no special functions are required.
126  *****************************************************************************/
127 typedef s64 mtime_t;
128
129 /*****************************************************************************
130  * The vlc_fourcc_t type.
131  *****************************************************************************
132  * See http://www.webartz.com/fourcc/ for a very detailed list.
133  *****************************************************************************/
134 typedef u32 vlc_fourcc_t;
135
136 #define VLC_FOURCC( a, b, c, d ) \
137     ( ((u32)a) | ( ((u32)b) << 8 ) | ( ((u32)c) << 16 ) | ( ((u32)d) << 24 ) )
138
139 #define VLC_TWOCC( a, b ) \
140     ( (u16)(a) | ( (u16)(b) << 8 ) )
141
142 /*****************************************************************************
143  * Classes declaration
144  *****************************************************************************/
145
146 /* Messages */
147 typedef struct msg_bank_t msg_bank_t;
148 typedef struct msg_subscription_t msg_subscription_t;
149
150 /* Playlist */
151 typedef struct playlist_t playlist_t;
152 typedef struct playlist_item_t playlist_item_t;
153
154 /* Modules */
155 typedef struct module_bank_t module_bank_t;
156 typedef struct module_t module_t;
157 typedef struct module_config_t module_config_t;
158 typedef struct module_symbols_t module_symbols_t;
159
160 /* Interface */
161 typedef struct intf_thread_t intf_thread_t;
162 typedef struct intf_sys_t intf_sys_t;
163 typedef struct intf_console_t intf_console_t;
164 typedef struct intf_msg_t intf_msg_t;
165 typedef struct intf_channel_t intf_channel_t;
166
167 /* Input */
168 typedef struct input_thread_t input_thread_t;
169 typedef struct input_channel_t input_channel_t;
170 typedef struct input_area_t input_area_t;
171 typedef struct input_buffers_t input_buffers_t;
172 typedef struct input_socket_t input_socket_t;
173 typedef struct input_info_t input_info_t;
174 typedef struct input_info_category_t input_info_category_t;
175 typedef struct access_sys_t access_sys_t;
176 typedef struct demux_sys_t demux_sys_t;
177 typedef struct es_descriptor_t es_descriptor_t;
178 typedef struct es_sys_t es_sys_t;
179 typedef struct pgrm_descriptor_t pgrm_descriptor_t;
180 typedef struct pgrm_sys_t pgrm_sys_t;
181 typedef struct stream_descriptor_t stream_descriptor_t;
182 typedef struct stream_sys_t stream_sys_t;
183
184 /* Audio */
185 typedef struct aout_instance_t aout_instance_t;
186 typedef struct aout_sys_t aout_sys_t;
187 typedef struct aout_fifo_t aout_fifo_t;
188 typedef struct aout_input_t aout_input_t;
189 typedef struct aout_buffer_t aout_buffer_t;
190 typedef struct audio_sample_format_t audio_sample_format_t;
191 typedef struct audio_date_t audio_date_t;
192
193 /* Video */
194 typedef struct vout_thread_t vout_thread_t;
195 typedef struct vout_font_t vout_font_t;
196 typedef struct vout_sys_t vout_sys_t;
197 typedef struct chroma_sys_t chroma_sys_t;
198 typedef struct picture_t picture_t;
199 typedef struct picture_sys_t picture_sys_t;
200 typedef struct picture_heap_t picture_heap_t;
201 typedef struct subpicture_t subpicture_t;
202 typedef struct subpicture_sys_t subpicture_sys_t;
203
204 /* Stream output */
205 typedef struct sout_instance_t sout_instance_t;
206 typedef struct sout_fifo_t sout_fifo_t;
207
208 /* Decoders */
209 typedef struct decoder_fifo_t decoder_fifo_t;
210
211 /* Misc */
212 typedef struct data_packet_t data_packet_t;
213 typedef struct data_buffer_t data_buffer_t;
214 typedef struct stream_position_t stream_position_t;
215 typedef struct stream_ctrl_t stream_ctrl_t;
216 typedef struct pes_packet_t pes_packet_t;
217 typedef struct bit_stream_t bit_stream_t;
218 typedef struct network_socket_t network_socket_t;
219 typedef struct iso639_lang_t iso639_lang_t;
220
221 /*****************************************************************************
222  * Plug-in stuff
223  *****************************************************************************/
224 #ifndef __PLUGIN__
225 #   define VLC_EXPORT( type, name, args ) type name args
226 #else
227 #   define VLC_EXPORT( type, name, args ) struct _u_n_u_s_e_d_
228     extern module_symbols_t* p_symbols;
229 #endif
230
231 /*****************************************************************************
232  * OS-specific headers and thread types
233  *****************************************************************************/
234 #if defined( WIN32 )
235 #   define WIN32_LEAN_AND_MEAN
236 #   include <windows.h>
237 #endif
238
239 #include "vlc_threads.h"
240
241 /*****************************************************************************
242  * Common structure members
243  *****************************************************************************/
244
245 /* VLC_COMMON_MEMBERS : members common to all basic vlc objects */
246 #define VLC_COMMON_MEMBERS                                                  \
247     int   i_object_id;                                                      \
248     int   i_object_type;                                                    \
249     char *psz_object_type;                                                  \
250     char *psz_object_name;                                                  \
251                                                                             \
252     /* Thread properties, if any */                                         \
253     vlc_bool_t   b_thread;                                                  \
254     vlc_thread_t thread_id;                                                 \
255                                                                             \
256     /* Object access lock */                                                \
257     vlc_mutex_t  object_lock;                                               \
258     vlc_cond_t   object_wait;                                               \
259                                                                             \
260     volatile vlc_bool_t b_error;                    /* set by the object */ \
261     volatile vlc_bool_t b_die;                     /* set by the outside */ \
262     volatile vlc_bool_t b_dead;                     /* set by the object */ \
263     volatile vlc_bool_t b_attached;                 /* set by the object */ \
264                                                                             \
265     vlc_t *         p_vlc;                           /* root of all evil */ \
266                                                                             \
267     volatile int    i_refcount;                           /* usage count */ \
268     vlc_object_t *  p_parent;                              /* our parent */ \
269     vlc_object_t ** pp_children;                         /* our children */ \
270     volatile int    i_children;                                             \
271                                                                             \
272     /* Private data */                                                      \
273     void *          p_private;                                              \
274                                                                             \
275     /* Just a reminder so that people don't cast garbage */                 \
276     int be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                        \
277
278 /* The real vlc_object_t type. Yes, it's that simple :-) */
279 struct vlc_object_t
280 {
281     VLC_COMMON_MEMBERS
282 };
283
284 /* The object list */
285 struct vlc_list_t
286 {
287     int             i_count;
288     vlc_object_t ** pp_objects;
289
290     /* Private */
291     int             _i_extra;
292     vlc_object_t *  _p_first;
293 };  
294
295 /* VLC_OBJECT: attempt at doing a clever cast */
296 #define VLC_OBJECT( x ) \
297     ((vlc_object_t *)(x))+0*(x)->be_sure_to_add_VLC_COMMON_MEMBERS_to_struct
298
299 /*****************************************************************************
300  * Macros and inline functions
301  *****************************************************************************/
302 #ifdef NTOHL_IN_SYS_PARAM_H
303 #   include <sys/param.h>
304
305 #elif !defined(WIN32) /* NTOHL_IN_SYS_PARAM_H || WIN32 */
306 #   include <netinet/in.h>
307
308 #endif /* NTOHL_IN_SYS_PARAM_H || WIN32 */
309
310 /* CEIL: division with round to nearest greater integer */
311 #define CEIL(n, d)  ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
312
313 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
314 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
315
316 /* __MAX and __MIN: self explanatory */
317 #ifndef __MAX
318 #   define __MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
319 #endif
320 #ifndef __MIN
321 #   define __MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
322 #endif
323
324 /* MSB (big endian)/LSB (little endian) conversions - network order is always
325  * MSB, and should be used for both network communications and files. Note that
326  * byte orders other than little and big endians are not supported, but only
327  * the VAX seems to have such exotic properties. */
328 static inline u16 U16_AT( void * _p )
329 {
330     u8 * p = (u8 *)_p;
331     return ( ((u16)p[0] << 8) | p[1] );
332 }
333 static inline u32 U32_AT( void * _p )
334 {
335     u8 * p = (u8 *)_p;
336     return ( ((u32)p[0] << 24) | ((u32)p[1] << 16) | ((u32)p[2] << 8) | p[3] );
337 }
338 static inline u64 U64_AT( void * _p )
339 {
340     u8 * p = (u8 *)_p;
341     return ( ((u64)p[0] << 56) | ((u64)p[1] << 48) | ((u64)p[2] << 40) 
342               | ((u64)p[3] << 32) | ((u64)p[4] << 24) | ((u64)p[5] << 16)
343               | ((u64)p[6] << 8) | p[7] );
344 }
345 #if WORDS_BIGENDIAN
346 #   define hton16(i)   ( i )
347 #   define hton32(i)   ( i )
348 #   define hton64(i)   ( i )
349 #   define ntoh16(i)   ( i )
350 #   define ntoh32(i)   ( i )
351 #   define ntoh64(i)   ( i )
352 #else
353 #   define hton16(i)   U16_AT(&i)
354 #   define hton32(i)   U32_AT(&i)
355 #   define hton64(i)   U64_AT(&i)
356 #   define ntoh16(i)   U16_AT(&i)
357 #   define ntoh32(i)   U32_AT(&i)
358 #   define ntoh64(i)   U64_AT(&i)
359 #endif
360
361 /* Alignment of critical static data structures */
362 #ifdef ATTRIBUTE_ALIGNED_MAX
363 #   define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
364 #else
365 #   define ATTR_ALIGN(align)
366 #endif
367
368 /* Alignment of critical dynamic data structure
369  *
370  * Not all platforms support memalign so we provide a vlc_memalign wrapper
371  * void *vlc_memalign( size_t align, size_t size, void **pp_orig )
372  * *pp_orig is the pointer that has to be freed afterwards.
373  */
374 #if 0
375 #ifdef HAVE_POSIX_MEMALIGN
376 #   define vlc_memalign(align,size,pp_orig) \
377     ( !posix_memalign( pp_orig, align, size ) ? *(pp_orig) : NULL )
378 #endif
379 #endif
380 #ifdef HAVE_MEMALIGN
381     /* Some systems have memalign() but no declaration for it */
382     void * memalign( size_t align, size_t size );
383
384 #   define vlc_memalign(pp_orig,align,size) \
385     ( *(pp_orig) = memalign( align, size ) )
386
387 #else /* We don't have any choice but to align manually */
388 #   define vlc_memalign(pp_orig,align,size) \
389     (( *(pp_orig) = malloc( size + align - 1 )) \
390         ? (void *)( (((unsigned long)*(pp_orig)) + (unsigned long)(align-1) ) \
391                        & (~(unsigned long)(align-1)) ) \
392         : NULL )
393
394 #endif
395
396 /* strndup (defined in src/misc/extras.c) */
397 #ifndef HAVE_STRNDUP
398 char * strndup( const char *s, size_t n );
399 #endif
400
401
402 #define I64C(x)         x##LL
403
404 #ifdef WIN32
405 /* win32, cl and icl support */
406 #   if defined( _MSC_VER ) || !defined( __MINGW32__ )
407 #       define __attribute__(x)
408 #       define __inline__      __inline
409 #       define strncasecmp     strnicmp
410 #       define strcasecmp      stricmp
411 #       define S_IFBLK         0x3000  /* Block */
412 #       define S_ISBLK(m)      (0)
413 #       define S_ISCHR(m)      (0)
414 #       define S_ISFIFO(m)     (((m)&_S_IFMT) == _S_IFIFO)
415 #       define S_ISREG(m)      (((m)&_S_IFMT) == _S_IFREG)
416 #       undef I64C
417 #       define I64C(x)         x##i64
418 #   endif
419
420 /* several type definitions */
421 #   if defined( __MINGW32__ )
422 #       if !defined( _OFF_T_ )
423 typedef long long _off_t;
424 typedef _off_t off_t;
425 #           define _OFF_T_
426 #       else
427 #           define off_t long long
428 #       endif
429 #   endif
430
431 #   if defined( _MSC_VER )
432 #       if !defined( _OFF_T_DEFINED )
433 typedef __int64 off_t;
434 #           define _OFF_T_DEFINED
435 #       else
436 #           define off_t __int64
437 #       endif
438 #   endif
439
440 #   if defined( __BORLANDC__ )
441 #       undef off_t
442 #       define off_t unsigned __int64
443 #   endif
444
445 #   ifndef O_NONBLOCK
446 #       define O_NONBLOCK 0
447 #   endif
448
449     /* These two are not defined in mingw32 (bug?) */
450 #   ifndef snprintf
451 #       define snprintf _snprintf
452 #   endif
453 #   ifndef vsnprintf
454 #       define vsnprintf _vsnprintf
455 #   endif
456
457 #endif
458
459 /*****************************************************************************
460  * CPU capabilities
461  *****************************************************************************/
462 #define CPU_CAPABILITY_NONE    0
463 #define CPU_CAPABILITY_486     (1<<0)
464 #define CPU_CAPABILITY_586     (1<<1)
465 #define CPU_CAPABILITY_PPRO    (1<<2)
466 #define CPU_CAPABILITY_MMX     (1<<3)
467 #define CPU_CAPABILITY_3DNOW   (1<<4)
468 #define CPU_CAPABILITY_MMXEXT  (1<<5)
469 #define CPU_CAPABILITY_SSE     (1<<6)
470 #define CPU_CAPABILITY_ALTIVEC (1<<16)
471 #define CPU_CAPABILITY_FPU     (1<<31)
472
473 /*****************************************************************************
474  * I18n stuff
475  *****************************************************************************/
476 #if defined( ENABLE_NLS ) && defined ( HAVE_GETTEXT ) && !defined( __BORLANDC__ ) && !defined( NEED_GNOMESUPPORT_H )
477 #   include <libintl.h>
478 #   undef _
479 #   define _(String) dgettext (PACKAGE, String)
480 #   ifdef gettext_noop
481 #       define N_(String) gettext_noop (String)
482 #   else
483 #       define N_(String) (String)
484 #   endif
485 #elif !defined( NEED_GNOMESUPPORT_H )
486 #   define _(String) (String)
487 #   define N_(String) (String)
488 #endif
489
490 /*****************************************************************************
491  * Additional vlc stuff
492  *****************************************************************************/
493 #include "vlc_symbols.h"
494 #include "os_specific.h"
495 #include "vlc_messages.h"
496 #include "vlc_threads_funcs.h"
497 #include "mtime.h"
498 #include "modules.h"
499 #include "main.h"
500 #include "configuration.h"
501 #include "vlc_objects.h"
502
503 #if defined( __BORLANDC__ )
504 #   undef PACKAGE
505 #   define PACKAGE
506 #endif
507