]> git.sesse.net Git - vlc/blob - include/vlc_common.h
* configure.ac : added --enable-goom and --with-goom-tree. Btw, I use a
[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.75 2003/08/23 22:49:50 fenrir 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 #   undef HAVE_INTTYPES_H
40 #   undef off_t
41 #endif
42
43 #include "vlc_config.h"
44 #include "modules_inner.h"
45
46 /*****************************************************************************
47  * Required system headers
48  *****************************************************************************/
49 #include <stdarg.h>
50
51 #ifdef HAVE_STRING_H
52 #   include <string.h>                                         /* strerror() */
53 #endif
54
55 #ifdef HAVE_SYS_TYPES_H
56 #   include <sys/types.h>
57 #endif
58
59 /*****************************************************************************
60  * Basic types definitions
61  *****************************************************************************/
62 #if defined( HAVE_STDINT_H )
63 #   include <stdint.h>
64 #elif defined( HAVE_INTTYPES_H )
65 #   include <inttypes.h>
66 #elif defined( SYS_CYGWIN )
67 #   include <sys/types.h>
68     /* Cygwin only defines half of these... */
69     typedef u_int8_t            uint8_t;
70     typedef u_int16_t           uint16_t;
71     typedef u_int32_t           uint32_t;
72     typedef u_int64_t           uint64_t;
73 #else
74     /* Fallback types (very x86-centric, sorry) */
75     typedef unsigned char       uint8_t;
76     typedef signed char         int8_t;
77     typedef unsigned short      uint16_t;
78     typedef signed short        int16_t;
79     typedef unsigned int        uint32_t;
80     typedef signed int          int32_t;
81 #   if defined( _MSC_VER ) \
82       || defined( UNDER_CE ) \
83       || ( defined( WIN32 ) && !defined( __MINGW32__ ) )
84     typedef unsigned __int64    uint64_t;
85     typedef signed __int64      int64_t;
86 #   else
87     typedef unsigned long long  uint64_t;
88     typedef signed long long    int64_t;
89 #   endif
90 #endif
91
92 typedef uint8_t                 byte_t;
93
94 /* ptrdiff_t definition */
95 #ifdef HAVE_STDDEF_H
96 #   include <stddef.h>
97 #else
98 #   include <malloc.h>
99 #   ifndef _PTRDIFF_T
100 #       define _PTRDIFF_T
101 /* Not portable in a 64-bit environment. */
102 typedef int                 ptrdiff_t;
103 #   endif
104 #endif
105
106 #if defined( WIN32 )
107 #   include <malloc.h>
108 #define PATH_MAX MAX_PATH
109 #endif
110
111 #if defined( WIN32 ) || defined( UNDER_CE )
112 typedef int                 ssize_t;
113 #endif
114
115 /* Counter for statistics and profiling */
116 typedef unsigned long       count_t;
117
118 /* DCT elements types */
119 typedef int16_t             dctelem_t;
120
121 /* Video buffer types */
122 typedef uint8_t             yuv_data_t;
123
124 /* Audio volume */
125 typedef uint16_t            audio_volume_t;
126
127 #ifndef HAVE_SOCKLEN_T
128 typedef int                 socklen_t;
129 #endif
130
131 /*****************************************************************************
132  * Old types definitions
133  *****************************************************************************
134  * We still provide these types because most of the VLC code uses them
135  * instead of the C9x types. They should be removed when the transition is
136  * complete (probably in 10 years).
137  *****************************************************************************/
138 typedef uint8_t    u8;
139 typedef int8_t     s8;
140 typedef uint16_t   u16;
141 typedef int16_t    s16;
142 typedef uint32_t   u32;
143 typedef int32_t    s32;
144 typedef uint64_t   u64;
145 typedef int64_t    s64;
146
147 /*****************************************************************************
148  * mtime_t: high precision date or time interval
149  *****************************************************************************
150  * Store a high precision date or time interval. The maximum precision is the
151  * microsecond, and a 64 bits integer is used to avoid overflows (maximum
152  * time interval is then 292271 years, which should be long enough for any
153  * video). Dates are stored as microseconds since a common date (usually the
154  * epoch). Note that date and time intervals can be manipulated using regular
155  * arithmetic operators, and that no special functions are required.
156  *****************************************************************************/
157 typedef int64_t mtime_t;
158
159 /*****************************************************************************
160  * The vlc_fourcc_t type.
161  *****************************************************************************
162  * See http://www.webartz.com/fourcc/ for a very detailed list.
163  *****************************************************************************/
164 typedef uint32_t vlc_fourcc_t;
165
166 #ifdef WORDS_BIGENDIAN
167 #   define VLC_FOURCC( a, b, c, d ) \
168         ( ((uint32_t)d) | ( ((uint32_t)c) << 8 ) \
169            | ( ((uint32_t)b) << 16 ) | ( ((uint32_t)a) << 24 ) )
170 #   define VLC_TWOCC( a, b ) \
171         ( (uint16_t)(b) | ( (uint16_t)(a) << 8 ) )
172
173 #else
174 #   define VLC_FOURCC( a, b, c, d ) \
175         ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
176            | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
177 #   define VLC_TWOCC( a, b ) \
178         ( (uint16_t)(a) | ( (uint16_t)(b) << 8 ) )
179
180 #endif
181
182 /*****************************************************************************
183  * Classes declaration
184  *****************************************************************************/
185
186 /* Internal types */
187 typedef struct libvlc_t libvlc_t;
188 typedef struct vlc_t vlc_t;
189 typedef struct variable_t variable_t;
190
191 /* Messages */
192 typedef struct msg_bank_t msg_bank_t;
193 typedef struct msg_subscription_t msg_subscription_t;
194
195 /* Playlist */
196 typedef struct playlist_t playlist_t;
197 typedef struct playlist_item_t playlist_item_t;
198
199 /* Modules */
200 typedef struct module_bank_t module_bank_t;
201 typedef struct module_t module_t;
202 typedef struct module_config_t module_config_t;
203 typedef struct module_symbols_t module_symbols_t;
204
205 /* Interface */
206 typedef struct intf_thread_t intf_thread_t;
207 typedef struct intf_sys_t intf_sys_t;
208 typedef struct intf_console_t intf_console_t;
209 typedef struct intf_msg_t intf_msg_t;
210 typedef struct intf_channel_t intf_channel_t;
211
212 /* Input */
213 typedef struct input_thread_t input_thread_t;
214 typedef struct input_channel_t input_channel_t;
215 typedef struct input_area_t input_area_t;
216 typedef struct input_buffers_t input_buffers_t;
217 typedef struct input_socket_t input_socket_t;
218 typedef struct input_info_t input_info_t;
219 typedef struct input_info_category_t input_info_category_t;
220 typedef struct access_sys_t access_sys_t;
221 typedef struct demux_sys_t demux_sys_t;
222 typedef struct es_descriptor_t es_descriptor_t;
223 typedef struct es_sys_t es_sys_t;
224 typedef struct pgrm_descriptor_t pgrm_descriptor_t;
225 typedef struct pgrm_sys_t pgrm_sys_t;
226 typedef struct stream_descriptor_t stream_descriptor_t;
227 typedef struct stream_sys_t stream_sys_t;
228
229 /* NInput */
230 typedef struct stream_t stream_t;
231
232 /* Audio */
233 typedef struct aout_instance_t aout_instance_t;
234 typedef struct aout_sys_t aout_sys_t;
235 typedef struct aout_fifo_t aout_fifo_t;
236 typedef struct aout_input_t aout_input_t;
237 typedef struct aout_buffer_t aout_buffer_t;
238 typedef struct audio_sample_format_t audio_sample_format_t;
239 typedef struct audio_date_t audio_date_t;
240
241 /* Video */
242 typedef struct vout_thread_t vout_thread_t;
243 typedef struct vout_font_t vout_font_t;
244 typedef struct vout_sys_t vout_sys_t;
245 typedef struct chroma_sys_t chroma_sys_t;
246 typedef struct picture_t picture_t;
247 typedef struct picture_sys_t picture_sys_t;
248 typedef struct picture_heap_t picture_heap_t;
249 typedef struct subpicture_t subpicture_t;
250 typedef struct subpicture_sys_t subpicture_sys_t;
251 typedef struct vout_synchro_t vout_synchro_t;
252 typedef struct text_renderer_sys_t text_renderer_sys_t;
253 typedef struct text_style_t text_style_t;
254
255 /* Stream output */
256 typedef struct sout_instance_t sout_instance_t;
257 typedef struct sout_fifo_t sout_fifo_t;
258 typedef struct sout_input_t sout_input_t;
259 typedef struct sout_packetizer_input_t sout_packetizer_input_t;
260 typedef struct sout_buffer_t sout_buffer_t;
261 typedef struct sout_access_out_t sout_access_out_t;
262 typedef struct sout_mux_t sout_mux_t;
263 typedef struct sout_stream_t    sout_stream_t;
264 typedef struct sout_cfg_t       sout_cfg_t;
265 typedef struct sout_format_t    sout_format_t;
266 /*typedef struct sap_session_t    sap_session_t;
267 typedef struct slp_session_t    slp_session_t;*/
268
269 /* Decoders */
270 typedef struct decoder_fifo_t decoder_fifo_t;
271
272 /* Misc */
273 typedef struct data_packet_t data_packet_t;
274 typedef struct data_buffer_t data_buffer_t;
275 typedef struct stream_position_t stream_position_t;
276 typedef struct stream_ctrl_t stream_ctrl_t;
277 typedef struct pes_packet_t pes_packet_t;
278 typedef struct bit_stream_t bit_stream_t;
279 typedef struct network_socket_t network_socket_t;
280 typedef struct iso639_lang_t iso639_lang_t;
281
282 /* block */
283 typedef struct block_t      block_t;
284 typedef struct block_fifo_t block_fifo_t;
285
286 /*****************************************************************************
287  * Variable callbacks
288  *****************************************************************************/
289 typedef int ( * vlc_callback_t ) ( vlc_object_t *,      /* variable's object */
290                                    char const *,            /* variable name */
291                                    vlc_value_t,                 /* old value */
292                                    vlc_value_t,                 /* new value */
293                                    void * );                /* callback data */
294
295 /*****************************************************************************
296  * Plug-in stuff
297  *****************************************************************************/
298 #ifndef __PLUGIN__
299 #   define VLC_EXPORT( type, name, args ) type name args
300 #else
301 #   define VLC_EXPORT( type, name, args ) struct _u_n_u_s_e_d_
302     extern module_symbols_t* p_symbols;
303 #endif
304
305 /*****************************************************************************
306  * OS-specific headers and thread types
307  *****************************************************************************/
308 #if defined( WIN32 ) || defined( UNDER_CE )
309 #   define WIN32_LEAN_AND_MEAN
310 #   include <windows.h>
311 #   define IS_WINNT ( GetVersion() < 0x80000000 )
312 #endif
313
314 #include "vlc_threads.h"
315
316 /*****************************************************************************
317  * Common structure members
318  *****************************************************************************/
319
320 /* VLC_COMMON_MEMBERS : members common to all basic vlc objects */
321 #define VLC_COMMON_MEMBERS                                                  \
322 /** \name VLC_COMMON_MEMBERS                                                \
323  * these members are common for all vlc objects                             \
324  */                                                                         \
325 /**@{*/                                                                     \
326     int   i_object_id;                                                      \
327     int   i_object_type;                                                    \
328     char *psz_object_type;                                                  \
329     char *psz_object_name;                                                  \
330                                                                             \
331     /* Thread properties, if any */                                         \
332     vlc_bool_t   b_thread;                                                  \
333     vlc_thread_t thread_id;                                                 \
334                                                                             \
335     /* Object access lock */                                                \
336     vlc_mutex_t  object_lock;                                               \
337     vlc_cond_t   object_wait;                                               \
338                                                                             \
339     /* Object properties */                                                 \
340     volatile vlc_bool_t b_error;                  /**< set by the object */ \
341     volatile vlc_bool_t b_die;                   /**< set by the outside */ \
342     volatile vlc_bool_t b_dead;                   /**< set by the object */ \
343     volatile vlc_bool_t b_attached;               /**< set by the object */ \
344                                                                             \
345     /* Object variables */                                                  \
346     vlc_mutex_t     var_lock;                                               \
347     int             i_vars;                                                 \
348     variable_t *    p_vars;                                                 \
349                                                                             \
350     /* Stuff related to the libvlc structure */                             \
351     libvlc_t *      p_libvlc;                      /**< root of all evil */ \
352     vlc_t *         p_vlc;                   /**< (root of all evil) - 1 */ \
353                                                                             \
354     volatile int    i_refcount;                         /**< usage count */ \
355     vlc_object_t *  p_parent;                            /**< our parent */ \
356     vlc_object_t ** pp_children;                       /**< our children */ \
357     volatile int    i_children;                                             \
358                                                                             \
359     /* Private data */                                                      \
360     void *          p_private;                                              \
361                                                                             \
362     /** Just a reminder so that people don't cast garbage */                \
363     int be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                        \
364 /**@}*/                                                                     \
365
366 /* VLC_OBJECT: attempt at doing a clever cast */
367 #define VLC_OBJECT( x ) \
368     ((vlc_object_t *)(x))+0*(x)->be_sure_to_add_VLC_COMMON_MEMBERS_to_struct
369
370 /*****************************************************************************
371  * Macros and inline functions
372  *****************************************************************************/
373 #ifdef NTOHL_IN_SYS_PARAM_H
374 #   include <sys/param.h>
375
376 #elif !defined(WIN32) && !defined( UNDER_CE )
377 #   include <netinet/in.h>
378
379 #endif /* NTOHL_IN_SYS_PARAM_H || WIN32 */
380
381 /* CEIL: division with round to nearest greater integer */
382 #define CEIL(n, d)  ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
383
384 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
385 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
386
387 /* __MAX and __MIN: self explanatory */
388 #ifndef __MAX
389 #   define __MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
390 #endif
391 #ifndef __MIN
392 #   define __MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
393 #endif
394
395 /* Dynamic array handling: realloc array, move data, increment position */
396 #define INSERT_ELEM( p_ar, i_oldsize, i_pos, elem )                           \
397     do                                                                        \
398     {                                                                         \
399         if( i_oldsize )                                                       \
400         {                                                                     \
401             (p_ar) = realloc( p_ar, ((i_oldsize) + 1) * sizeof( *(p_ar) ) );  \
402         }                                                                     \
403         else                                                                  \
404         {                                                                     \
405             (p_ar) = malloc( ((i_oldsize) + 1) * sizeof( *(p_ar) ) );         \
406         }                                                                     \
407         if( (i_oldsize) - (i_pos) )                                           \
408         {                                                                     \
409             memmove( (p_ar) + (i_pos) + 1,                                    \
410                      (p_ar) + (i_pos),                                        \
411                      ((i_oldsize) - (i_pos)) * sizeof( *(p_ar) ) );           \
412         }                                                                     \
413         (p_ar)[i_pos] = elem;                                                 \
414         (i_oldsize)++;                                                        \
415     }                                                                         \
416     while( 0 )
417
418 #define REMOVE_ELEM( p_ar, i_oldsize, i_pos )                                 \
419     do                                                                        \
420     {                                                                         \
421         if( (i_oldsize) - (i_pos) - 1 )                                       \
422         {                                                                     \
423             memmove( (p_ar) + (i_pos),                                        \
424                      (p_ar) + (i_pos) + 1,                                    \
425                      ((i_oldsize) - (i_pos) - 1) * sizeof( *(p_ar) ) );       \
426         }                                                                     \
427         if( i_oldsize > 1 )                                                   \
428         {                                                                     \
429             (p_ar) = realloc( p_ar, ((i_oldsize) - 1) * sizeof( *(p_ar) ) );  \
430         }                                                                     \
431         else                                                                  \
432         {                                                                     \
433             free( p_ar );                                                     \
434             (p_ar) = NULL;                                                    \
435         }                                                                     \
436         (i_oldsize)--;                                                        \
437     }                                                                         \
438     while( 0 )
439
440
441 /* MSB (big endian)/LSB (little endian) conversions - network order is always
442  * MSB, and should be used for both network communications and files. Note that
443  * byte orders other than little and big endians are not supported, but only
444  * the VAX seems to have such exotic properties. */
445 static inline uint16_t U16_AT( void * _p )
446 {
447     uint8_t * p = (uint8_t *)_p;
448     return ( ((uint16_t)p[0] << 8) | p[1] );
449 }
450 static inline uint32_t U32_AT( void * _p )
451 {
452     uint8_t * p = (uint8_t *)_p;
453     return ( ((uint32_t)p[0] << 24) | ((uint32_t)p[1] << 16)
454               | ((uint32_t)p[2] << 8) | p[3] );
455 }
456 static inline uint64_t U64_AT( void * _p )
457 {
458     uint8_t * p = (uint8_t *)_p;
459     return ( ((uint64_t)p[0] << 56) | ((uint64_t)p[1] << 48)
460               | ((uint64_t)p[2] << 40) | ((uint64_t)p[3] << 32)
461               | ((uint64_t)p[4] << 24) | ((uint64_t)p[5] << 16)
462               | ((uint64_t)p[6] << 8) | p[7] );
463 }
464
465 static inline uint16_t GetWLE( void * _p )
466 {
467     uint8_t * p = (uint8_t *)_p;
468     return ( ((uint16_t)p[1] << 8) | p[0] );
469 }
470 static inline uint32_t GetDWLE( void * _p )
471 {
472     uint8_t * p = (uint8_t *)_p;
473     return ( ((uint32_t)p[3] << 24) | ((uint32_t)p[2] << 16)
474               | ((uint32_t)p[1] << 8) | p[0] );
475 }
476 static inline uint64_t GetQWLE( void * _p )
477 {
478     uint8_t * p = (uint8_t *)_p;
479     return ( ((uint64_t)p[7] << 56) | ((uint64_t)p[6] << 48)
480               | ((uint64_t)p[5] << 40) | ((uint64_t)p[4] << 32)
481               | ((uint64_t)p[3] << 24) | ((uint64_t)p[2] << 16)
482               | ((uint64_t)p[1] << 8) | p[0] );
483 }
484
485 #define GetWBE( p )     U16_AT( p )
486 #define GetDWBE( p )    U32_AT( p )
487 #define GetQWBE( p )    U64_AT( p )
488
489
490 #if WORDS_BIGENDIAN
491 #   define hton16(i)   ( i )
492 #   define hton32(i)   ( i )
493 #   define hton64(i)   ( i )
494 #   define ntoh16(i)   ( i )
495 #   define ntoh32(i)   ( i )
496 #   define ntoh64(i)   ( i )
497 #else
498 #   define hton16(i)   U16_AT(&i)
499 #   define hton32(i)   U32_AT(&i)
500 #   define hton64(i)   U64_AT(&i)
501 #   define ntoh16(i)   U16_AT(&i)
502 #   define ntoh32(i)   U32_AT(&i)
503 #   define ntoh64(i)   U64_AT(&i)
504 #endif
505
506 /* Format string sanity checks */
507 #ifdef HAVE_ATTRIBUTE_FORMAT
508 #   define ATTRIBUTE_FORMAT(x,y) __attribute__ ((format(printf,x,y)))
509 #else
510 #   define ATTRIBUTE_FORMAT(x,y)
511 #endif
512
513 /* Alignment of critical static data structures */
514 #ifdef ATTRIBUTE_ALIGNED_MAX
515 #   define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
516 #else
517 #   define ATTR_ALIGN(align)
518 #endif
519
520 /* Alignment of critical dynamic data structure
521  *
522  * Not all platforms support memalign so we provide a vlc_memalign wrapper
523  * void *vlc_memalign( size_t align, size_t size, void **pp_orig )
524  * *pp_orig is the pointer that has to be freed afterwards.
525  */
526 #if 0
527 #ifdef HAVE_POSIX_MEMALIGN
528 #   define vlc_memalign(align,size,pp_orig) \
529     ( !posix_memalign( pp_orig, align, size ) ? *(pp_orig) : NULL )
530 #endif
531 #endif
532 #ifdef HAVE_MEMALIGN
533     /* Some systems have memalign() but no declaration for it */
534     void * memalign( size_t align, size_t size );
535
536 #   define vlc_memalign(pp_orig,align,size) \
537     ( *(pp_orig) = memalign( align, size ) )
538
539 #else /* We don't have any choice but to align manually */
540 #   define vlc_memalign(pp_orig,align,size) \
541     (( *(pp_orig) = malloc( size + align - 1 )) \
542         ? (void *)( (((unsigned long)*(pp_orig)) + (unsigned long)(align-1) ) \
543                        & (~(unsigned long)(align-1)) ) \
544         : NULL )
545
546 #endif
547
548 /* Stuff defined in src/extras/libc.c */
549 #ifndef HAVE_STRDUP
550 #   define strdup vlc_strdup
551     VLC_EXPORT( char *, vlc_strdup, ( const char *s ) );
552 #elif !defined(__PLUGIN__)
553 #   define vlc_strdup NULL
554 #endif
555
556 #ifndef HAVE_STRNDUP
557 #   if defined(STRNDUP_IN_GNOME_H) && \
558         (defined(MODULE_NAME_IS_gnome)||defined(MODULE_NAME_IS_gnome_main)||\
559          defined(MODULE_NAME_IS_gnome2)||defined(MODULE_NAME_IS_gnome2_main))
560         /* Do nothing: gnome.h defines strndup for us */
561 #   else
562 #       define strndup vlc_strndup
563         VLC_EXPORT( char *, vlc_strndup, ( const char *s, size_t n ) );
564 #   endif
565 #elif !defined(__PLUGIN__)
566 #   define vlc_strndup NULL
567 #endif
568
569 #ifndef HAVE_ATOF
570 #   define atof vlc_atof
571     VLC_EXPORT( double, vlc_atof, ( const char *nptr ) );
572 #elif !defined(__PLUGIN__)
573 #   define vlc_atof NULL
574 #endif
575
576 #ifndef HAVE_ATOLL
577 #   define atoll vlc_atoll
578     VLC_EXPORT( int64_t, vlc_atoll, ( const char *nptr ) );
579 #elif !defined(__PLUGIN__)
580 #   define vlc_atoll NULL
581 #endif
582
583 #ifndef HAVE_GETENV
584 #   define getenv vlc_getenv
585     VLC_EXPORT( char *, vlc_getenv, ( const char *name ) );
586 #elif !defined(__PLUGIN__)
587 #   define vlc_getenv NULL
588 #endif
589
590 #ifndef HAVE_STRCASECMP
591 #   ifdef HAVE_STRICMP
592 #       define strcasecmp stricmp
593 #       if !defined(__PLUGIN__)
594 #           define vlc_strcasecmp NULL
595 #       endif
596 #   elif !defined(__PLUGIN__)
597 #       define strcasecmp vlc_strcasecmp
598         VLC_EXPORT( int, vlc_strcasecmp, ( const char *s1, const char *s2 ) );
599 #   endif
600 #elif !defined(__PLUGIN__)
601 #   define vlc_strcasecmp NULL
602 #endif
603
604 #ifndef HAVE_STRNCASECMP
605 #   ifdef HAVE_STRNICMP
606 #       define strncasecmp strnicmp
607 #       if !defined(__PLUGIN__)
608 #           define vlc_strncasecmp NULL
609 #       endif
610 #   elif !defined(__PLUGIN__)
611 #       define strncasecmp vlc_strncasecmp
612         VLC_EXPORT( int, vlc_strncasecmp, ( const char *s1, const char *s2, size_t n ) );
613 #   endif
614 #elif !defined(__PLUGIN__)
615 #   define vlc_strncasecmp NULL
616 #endif
617
618 /* Format type specifiers for 64 bits numbers */
619 #if !defined(WIN32) && !defined(UNDER_CE)
620 #   define I64Fd "%lld"
621 #   define I64Fi "%lli"
622 #   define I64Fo "%llo"
623 #   define I64Fu "%llu"
624 #   define I64Fx "%llx"
625 #   define I64FX "%llX"
626 #else
627 #   define I64Fd "%I64d"
628 #   define I64Fi "%I64i"
629 #   define I64Fo "%I64o"
630 #   define I64Fu "%I64u"
631 #   define I64Fx "%I64x"
632 #   define I64FX "%I64X"
633 #endif /* defined(WIN32)||defined(UNDER_CE) */
634
635 /* 64 bits integer constant suffix */
636 #if defined( __MINGW32__ ) || (!defined(WIN32) && !defined(UNDER_CE))
637 #   define I64C(x)         x##LL
638 #else
639 #   define I64C(x)         x##i64
640 #endif /* defined(WIN32)||defined(UNDER_CE) */
641
642 #if defined(WIN32) || defined(UNDER_CE)
643 /* win32, cl and icl support */
644 #   if defined( _MSC_VER ) || !defined( __MINGW32__ )
645 #       define __attribute__(x)
646 #       define __inline__      __inline
647 #       define S_IFBLK         0x3000  /* Block */
648 #       define S_ISBLK(m)      (0)
649 #       define S_ISCHR(m)      (0)
650 #       define S_ISFIFO(m)     (((m)&_S_IFMT) == _S_IFIFO)
651 #       define S_ISREG(m)      (((m)&_S_IFMT) == _S_IFREG)
652 #   endif
653
654 /* several type definitions */
655 #   if defined( __MINGW32__ )
656 #       if !defined( _OFF_T_ )
657 typedef long long _off_t;
658 typedef _off_t off_t;
659 #           define _OFF_T_
660 #       else
661 #           ifdef off_t
662 #               undef off_t
663 #           endif
664 #           define off_t long long
665 #       endif
666 #   endif
667
668 #   if defined( _MSC_VER )
669 #       if !defined( _OFF_T_DEFINED )
670 typedef __int64 off_t;
671 #           define _OFF_T_DEFINED
672 #       else
673 #           define off_t __int64
674 #       endif
675 #   endif
676
677 #   if defined( __BORLANDC__ )
678 #       undef off_t
679 #       define off_t unsigned __int64
680 #   endif
681
682 #   ifndef O_NONBLOCK
683 #       define O_NONBLOCK 0
684 #   endif
685
686 #   ifndef alloca
687 #       define alloca _alloca
688 #   endif
689
690     /* These two are not defined in mingw32 (bug?) */
691 #   ifndef snprintf
692 #       define snprintf _snprintf
693 #   endif
694 #   ifndef vsnprintf
695 #       define vsnprintf _vsnprintf
696 #   endif
697
698 #endif
699
700 /* lseek (defined in src/extras/libc.c) */
701 #ifndef HAVE_LSEEK
702 #   define lseek vlc_lseek
703     VLC_EXPORT( off_t, vlc_lseek, ( int fildes, off_t offset, int whence ) );
704 #elif !defined(__PLUGIN__)
705 #   define vlc_lseek NULL
706 #endif
707
708 /*****************************************************************************
709  * CPU capabilities
710  *****************************************************************************/
711 #define CPU_CAPABILITY_NONE    0
712 #define CPU_CAPABILITY_486     (1<<0)
713 #define CPU_CAPABILITY_586     (1<<1)
714 #define CPU_CAPABILITY_PPRO    (1<<2)
715 #define CPU_CAPABILITY_MMX     (1<<3)
716 #define CPU_CAPABILITY_3DNOW   (1<<4)
717 #define CPU_CAPABILITY_MMXEXT  (1<<5)
718 #define CPU_CAPABILITY_SSE     (1<<6)
719 #define CPU_CAPABILITY_ALTIVEC (1<<16)
720 #define CPU_CAPABILITY_FPU     (1<<31)
721
722 /*****************************************************************************
723  * I18n stuff
724  *****************************************************************************/
725 VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) );
726
727 #if defined( ENABLE_NLS ) && \
728      (defined(MODULE_NAME_IS_gnome)||defined(MODULE_NAME_IS_gnome_main)||\
729       defined(MODULE_NAME_IS_gnome2)||defined(MODULE_NAME_IS_gnome2_main))
730     /* Declare nothing: gnome.h will do it for us */
731 #elif defined( ENABLE_NLS )
732 #if defined( HAVE_INCLUDED_GETTEXT )
733 #   include "libintl.h"
734 #else
735 #   include <libintl.h>
736 #endif
737 #   undef _
738 #if defined( __BORLANDC__ )
739 #define _(String) vlc_dgettext (PACKAGE_TARNAME, String)
740 #else
741 #   define _(String) vlc_dgettext (PACKAGE, String)
742 #endif
743 #   define N_(String) ((char*)(String))
744 #else
745 #   define _(String) ((char*)(String))
746 #   define N_(String) ((char*)(String))
747 #endif
748
749 /*****************************************************************************
750  * Additional vlc stuff
751  *****************************************************************************/
752 #include "vlc_symbols.h"
753 #include "os_specific.h"
754 #include "vlc_messages.h"
755 #include "variables.h"
756 #include "vlc_objects.h"
757 #include "vlc_threads_funcs.h"
758 #include "mtime.h"
759 #include "modules.h"
760 #include "main.h"
761 #include "configuration.h"
762
763 #if defined( __BORLANDC__ )
764 #   undef PACKAGE
765 #   define PACKAGE
766 #endif
767