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