]> git.sesse.net Git - vlc/blob - include/vlc_common.h
7949e5888756b79877dfa989ed60faad572c065f
[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.74 2003/08/17 23:02:51 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 /*****************************************************************************
283  * Variable callbacks
284  *****************************************************************************/
285 typedef int ( * vlc_callback_t ) ( vlc_object_t *,      /* variable's object */
286                                    char const *,            /* variable name */
287                                    vlc_value_t,                 /* old value */
288                                    vlc_value_t,                 /* new value */
289                                    void * );                /* callback data */
290
291 /*****************************************************************************
292  * Plug-in stuff
293  *****************************************************************************/
294 #ifndef __PLUGIN__
295 #   define VLC_EXPORT( type, name, args ) type name args
296 #else
297 #   define VLC_EXPORT( type, name, args ) struct _u_n_u_s_e_d_
298     extern module_symbols_t* p_symbols;
299 #endif
300
301 /*****************************************************************************
302  * OS-specific headers and thread types
303  *****************************************************************************/
304 #if defined( WIN32 ) || defined( UNDER_CE )
305 #   define WIN32_LEAN_AND_MEAN
306 #   include <windows.h>
307 #   define IS_WINNT ( GetVersion() < 0x80000000 )
308 #endif
309
310 #include "vlc_threads.h"
311
312 /*****************************************************************************
313  * Common structure members
314  *****************************************************************************/
315
316 /* VLC_COMMON_MEMBERS : members common to all basic vlc objects */
317 #define VLC_COMMON_MEMBERS                                                  \
318 /** \name VLC_COMMON_MEMBERS                                                \
319  * these members are common for all vlc objects                             \
320  */                                                                         \
321 /**@{*/                                                                     \
322     int   i_object_id;                                                      \
323     int   i_object_type;                                                    \
324     char *psz_object_type;                                                  \
325     char *psz_object_name;                                                  \
326                                                                             \
327     /* Thread properties, if any */                                         \
328     vlc_bool_t   b_thread;                                                  \
329     vlc_thread_t thread_id;                                                 \
330                                                                             \
331     /* Object access lock */                                                \
332     vlc_mutex_t  object_lock;                                               \
333     vlc_cond_t   object_wait;                                               \
334                                                                             \
335     /* Object properties */                                                 \
336     volatile vlc_bool_t b_error;                  /**< set by the object */ \
337     volatile vlc_bool_t b_die;                   /**< set by the outside */ \
338     volatile vlc_bool_t b_dead;                   /**< set by the object */ \
339     volatile vlc_bool_t b_attached;               /**< set by the object */ \
340                                                                             \
341     /* Object variables */                                                  \
342     vlc_mutex_t     var_lock;                                               \
343     int             i_vars;                                                 \
344     variable_t *    p_vars;                                                 \
345                                                                             \
346     /* Stuff related to the libvlc structure */                             \
347     libvlc_t *      p_libvlc;                      /**< root of all evil */ \
348     vlc_t *         p_vlc;                   /**< (root of all evil) - 1 */ \
349                                                                             \
350     volatile int    i_refcount;                         /**< usage count */ \
351     vlc_object_t *  p_parent;                            /**< our parent */ \
352     vlc_object_t ** pp_children;                       /**< our children */ \
353     volatile int    i_children;                                             \
354                                                                             \
355     /* Private data */                                                      \
356     void *          p_private;                                              \
357                                                                             \
358     /** Just a reminder so that people don't cast garbage */                \
359     int be_sure_to_add_VLC_COMMON_MEMBERS_to_struct;                        \
360 /**@}*/                                                                     \
361
362 /* VLC_OBJECT: attempt at doing a clever cast */
363 #define VLC_OBJECT( x ) \
364     ((vlc_object_t *)(x))+0*(x)->be_sure_to_add_VLC_COMMON_MEMBERS_to_struct
365
366 /*****************************************************************************
367  * Macros and inline functions
368  *****************************************************************************/
369 #ifdef NTOHL_IN_SYS_PARAM_H
370 #   include <sys/param.h>
371
372 #elif !defined(WIN32) && !defined( UNDER_CE )
373 #   include <netinet/in.h>
374
375 #endif /* NTOHL_IN_SYS_PARAM_H || WIN32 */
376
377 /* CEIL: division with round to nearest greater integer */
378 #define CEIL(n, d)  ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
379
380 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
381 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
382
383 /* __MAX and __MIN: self explanatory */
384 #ifndef __MAX
385 #   define __MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
386 #endif
387 #ifndef __MIN
388 #   define __MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
389 #endif
390
391 /* Dynamic array handling: realloc array, move data, increment position */
392 #define INSERT_ELEM( p_ar, i_oldsize, i_pos, elem )                           \
393     do                                                                        \
394     {                                                                         \
395         if( i_oldsize )                                                       \
396         {                                                                     \
397             (p_ar) = realloc( p_ar, ((i_oldsize) + 1) * sizeof( *(p_ar) ) );  \
398         }                                                                     \
399         else                                                                  \
400         {                                                                     \
401             (p_ar) = malloc( ((i_oldsize) + 1) * sizeof( *(p_ar) ) );         \
402         }                                                                     \
403         if( (i_oldsize) - (i_pos) )                                           \
404         {                                                                     \
405             memmove( (p_ar) + (i_pos) + 1,                                    \
406                      (p_ar) + (i_pos),                                        \
407                      ((i_oldsize) - (i_pos)) * sizeof( *(p_ar) ) );           \
408         }                                                                     \
409         (p_ar)[i_pos] = elem;                                                 \
410         (i_oldsize)++;                                                        \
411     }                                                                         \
412     while( 0 )
413
414 #define REMOVE_ELEM( p_ar, i_oldsize, i_pos )                                 \
415     do                                                                        \
416     {                                                                         \
417         if( (i_oldsize) - (i_pos) - 1 )                                       \
418         {                                                                     \
419             memmove( (p_ar) + (i_pos),                                        \
420                      (p_ar) + (i_pos) + 1,                                    \
421                      ((i_oldsize) - (i_pos) - 1) * sizeof( *(p_ar) ) );       \
422         }                                                                     \
423         if( i_oldsize > 1 )                                                   \
424         {                                                                     \
425             (p_ar) = realloc( p_ar, ((i_oldsize) - 1) * sizeof( *(p_ar) ) );  \
426         }                                                                     \
427         else                                                                  \
428         {                                                                     \
429             free( p_ar );                                                     \
430             (p_ar) = NULL;                                                    \
431         }                                                                     \
432         (i_oldsize)--;                                                        \
433     }                                                                         \
434     while( 0 )
435
436
437 /* MSB (big endian)/LSB (little endian) conversions - network order is always
438  * MSB, and should be used for both network communications and files. Note that
439  * byte orders other than little and big endians are not supported, but only
440  * the VAX seems to have such exotic properties. */
441 static inline uint16_t U16_AT( void * _p )
442 {
443     uint8_t * p = (uint8_t *)_p;
444     return ( ((uint16_t)p[0] << 8) | p[1] );
445 }
446 static inline uint32_t U32_AT( void * _p )
447 {
448     uint8_t * p = (uint8_t *)_p;
449     return ( ((uint32_t)p[0] << 24) | ((uint32_t)p[1] << 16)
450               | ((uint32_t)p[2] << 8) | p[3] );
451 }
452 static inline uint64_t U64_AT( void * _p )
453 {
454     uint8_t * p = (uint8_t *)_p;
455     return ( ((uint64_t)p[0] << 56) | ((uint64_t)p[1] << 48)
456               | ((uint64_t)p[2] << 40) | ((uint64_t)p[3] << 32)
457               | ((uint64_t)p[4] << 24) | ((uint64_t)p[5] << 16)
458               | ((uint64_t)p[6] << 8) | p[7] );
459 }
460
461 static inline uint16_t GetWLE( void * _p )
462 {
463     uint8_t * p = (uint8_t *)_p;
464     return ( ((uint16_t)p[1] << 8) | p[0] );
465 }
466 static inline uint32_t GetDWLE( void * _p )
467 {
468     uint8_t * p = (uint8_t *)_p;
469     return ( ((uint32_t)p[3] << 24) | ((uint32_t)p[2] << 16)
470               | ((uint32_t)p[1] << 8) | p[0] );
471 }
472 static inline uint64_t GetQWLE( void * _p )
473 {
474     uint8_t * p = (uint8_t *)_p;
475     return ( ((uint64_t)p[7] << 56) | ((uint64_t)p[6] << 48)
476               | ((uint64_t)p[5] << 40) | ((uint64_t)p[4] << 32)
477               | ((uint64_t)p[3] << 24) | ((uint64_t)p[2] << 16)
478               | ((uint64_t)p[1] << 8) | p[0] );
479 }
480
481 #define GetWBE( p )     U16_AT( p )
482 #define GetDWBE( p )    U32_AT( p )
483 #define GetQWBE( p )    U64_AT( p )
484
485
486 #if WORDS_BIGENDIAN
487 #   define hton16(i)   ( i )
488 #   define hton32(i)   ( i )
489 #   define hton64(i)   ( i )
490 #   define ntoh16(i)   ( i )
491 #   define ntoh32(i)   ( i )
492 #   define ntoh64(i)   ( i )
493 #else
494 #   define hton16(i)   U16_AT(&i)
495 #   define hton32(i)   U32_AT(&i)
496 #   define hton64(i)   U64_AT(&i)
497 #   define ntoh16(i)   U16_AT(&i)
498 #   define ntoh32(i)   U32_AT(&i)
499 #   define ntoh64(i)   U64_AT(&i)
500 #endif
501
502 /* Format string sanity checks */
503 #ifdef HAVE_ATTRIBUTE_FORMAT
504 #   define ATTRIBUTE_FORMAT(x,y) __attribute__ ((format(printf,x,y)))
505 #else
506 #   define ATTRIBUTE_FORMAT(x,y)
507 #endif
508
509 /* Alignment of critical static data structures */
510 #ifdef ATTRIBUTE_ALIGNED_MAX
511 #   define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align)))
512 #else
513 #   define ATTR_ALIGN(align)
514 #endif
515
516 /* Alignment of critical dynamic data structure
517  *
518  * Not all platforms support memalign so we provide a vlc_memalign wrapper
519  * void *vlc_memalign( size_t align, size_t size, void **pp_orig )
520  * *pp_orig is the pointer that has to be freed afterwards.
521  */
522 #if 0
523 #ifdef HAVE_POSIX_MEMALIGN
524 #   define vlc_memalign(align,size,pp_orig) \
525     ( !posix_memalign( pp_orig, align, size ) ? *(pp_orig) : NULL )
526 #endif
527 #endif
528 #ifdef HAVE_MEMALIGN
529     /* Some systems have memalign() but no declaration for it */
530     void * memalign( size_t align, size_t size );
531
532 #   define vlc_memalign(pp_orig,align,size) \
533     ( *(pp_orig) = memalign( align, size ) )
534
535 #else /* We don't have any choice but to align manually */
536 #   define vlc_memalign(pp_orig,align,size) \
537     (( *(pp_orig) = malloc( size + align - 1 )) \
538         ? (void *)( (((unsigned long)*(pp_orig)) + (unsigned long)(align-1) ) \
539                        & (~(unsigned long)(align-1)) ) \
540         : NULL )
541
542 #endif
543
544 /* Stuff defined in src/extras/libc.c */
545 #ifndef HAVE_STRDUP
546 #   define strdup vlc_strdup
547     VLC_EXPORT( char *, vlc_strdup, ( const char *s ) );
548 #elif !defined(__PLUGIN__)
549 #   define vlc_strdup NULL
550 #endif
551
552 #ifndef HAVE_STRNDUP
553 #   if defined(STRNDUP_IN_GNOME_H) && \
554         (defined(MODULE_NAME_IS_gnome)||defined(MODULE_NAME_IS_gnome_main)||\
555          defined(MODULE_NAME_IS_gnome2)||defined(MODULE_NAME_IS_gnome2_main))
556         /* Do nothing: gnome.h defines strndup for us */
557 #   else
558 #       define strndup vlc_strndup
559         VLC_EXPORT( char *, vlc_strndup, ( const char *s, size_t n ) );
560 #   endif
561 #elif !defined(__PLUGIN__)
562 #   define vlc_strndup NULL
563 #endif
564
565 #ifndef HAVE_ATOF
566 #   define atof vlc_atof
567     VLC_EXPORT( double, vlc_atof, ( const char *nptr ) );
568 #elif !defined(__PLUGIN__)
569 #   define vlc_atof NULL
570 #endif
571
572 #ifndef HAVE_ATOLL
573 #   define atoll vlc_atoll
574     VLC_EXPORT( int64_t, vlc_atoll, ( const char *nptr ) );
575 #elif !defined(__PLUGIN__)
576 #   define vlc_atoll NULL
577 #endif
578
579 #ifndef HAVE_GETENV
580 #   define getenv vlc_getenv
581     VLC_EXPORT( char *, vlc_getenv, ( const char *name ) );
582 #elif !defined(__PLUGIN__)
583 #   define vlc_getenv NULL
584 #endif
585
586 #ifndef HAVE_STRCASECMP
587 #   ifdef HAVE_STRICMP
588 #       define strcasecmp stricmp
589 #       if !defined(__PLUGIN__)
590 #           define vlc_strcasecmp NULL
591 #       endif
592 #   elif !defined(__PLUGIN__)
593 #       define strcasecmp vlc_strcasecmp
594         VLC_EXPORT( int, vlc_strcasecmp, ( const char *s1, const char *s2 ) );
595 #   endif
596 #elif !defined(__PLUGIN__)
597 #   define vlc_strcasecmp NULL
598 #endif
599
600 #ifndef HAVE_STRNCASECMP
601 #   ifdef HAVE_STRNICMP
602 #       define strncasecmp strnicmp
603 #       if !defined(__PLUGIN__)
604 #           define vlc_strncasecmp NULL
605 #       endif
606 #   elif !defined(__PLUGIN__)
607 #       define strncasecmp vlc_strncasecmp
608         VLC_EXPORT( int, vlc_strncasecmp, ( const char *s1, const char *s2, size_t n ) );
609 #   endif
610 #elif !defined(__PLUGIN__)
611 #   define vlc_strncasecmp NULL
612 #endif
613
614 /* Format type specifiers for 64 bits numbers */
615 #if !defined(WIN32) && !defined(UNDER_CE)
616 #   define I64Fd "%lld"
617 #   define I64Fi "%lli"
618 #   define I64Fo "%llo"
619 #   define I64Fu "%llu"
620 #   define I64Fx "%llx"
621 #   define I64FX "%llX"
622 #else
623 #   define I64Fd "%I64d"
624 #   define I64Fi "%I64i"
625 #   define I64Fo "%I64o"
626 #   define I64Fu "%I64u"
627 #   define I64Fx "%I64x"
628 #   define I64FX "%I64X"
629 #endif /* defined(WIN32)||defined(UNDER_CE) */
630
631 /* 64 bits integer constant suffix */
632 #if defined( __MINGW32__ ) || (!defined(WIN32) && !defined(UNDER_CE))
633 #   define I64C(x)         x##LL
634 #else
635 #   define I64C(x)         x##i64
636 #endif /* defined(WIN32)||defined(UNDER_CE) */
637
638 #if defined(WIN32) || defined(UNDER_CE)
639 /* win32, cl and icl support */
640 #   if defined( _MSC_VER ) || !defined( __MINGW32__ )
641 #       define __attribute__(x)
642 #       define __inline__      __inline
643 #       define S_IFBLK         0x3000  /* Block */
644 #       define S_ISBLK(m)      (0)
645 #       define S_ISCHR(m)      (0)
646 #       define S_ISFIFO(m)     (((m)&_S_IFMT) == _S_IFIFO)
647 #       define S_ISREG(m)      (((m)&_S_IFMT) == _S_IFREG)
648 #   endif
649
650 /* several type definitions */
651 #   if defined( __MINGW32__ )
652 #       if !defined( _OFF_T_ )
653 typedef long long _off_t;
654 typedef _off_t off_t;
655 #           define _OFF_T_
656 #       else
657 #           ifdef off_t
658 #               undef off_t
659 #           endif
660 #           define off_t long long
661 #       endif
662 #   endif
663
664 #   if defined( _MSC_VER )
665 #       if !defined( _OFF_T_DEFINED )
666 typedef __int64 off_t;
667 #           define _OFF_T_DEFINED
668 #       else
669 #           define off_t __int64
670 #       endif
671 #   endif
672
673 #   if defined( __BORLANDC__ )
674 #       undef off_t
675 #       define off_t unsigned __int64
676 #   endif
677
678 #   ifndef O_NONBLOCK
679 #       define O_NONBLOCK 0
680 #   endif
681
682 #   ifndef alloca
683 #       define alloca _alloca
684 #   endif
685
686     /* These two are not defined in mingw32 (bug?) */
687 #   ifndef snprintf
688 #       define snprintf _snprintf
689 #   endif
690 #   ifndef vsnprintf
691 #       define vsnprintf _vsnprintf
692 #   endif
693
694 #endif
695
696 /* lseek (defined in src/extras/libc.c) */
697 #ifndef HAVE_LSEEK
698 #   define lseek vlc_lseek
699     VLC_EXPORT( off_t, vlc_lseek, ( int fildes, off_t offset, int whence ) );
700 #elif !defined(__PLUGIN__)
701 #   define vlc_lseek NULL
702 #endif
703
704 /*****************************************************************************
705  * CPU capabilities
706  *****************************************************************************/
707 #define CPU_CAPABILITY_NONE    0
708 #define CPU_CAPABILITY_486     (1<<0)
709 #define CPU_CAPABILITY_586     (1<<1)
710 #define CPU_CAPABILITY_PPRO    (1<<2)
711 #define CPU_CAPABILITY_MMX     (1<<3)
712 #define CPU_CAPABILITY_3DNOW   (1<<4)
713 #define CPU_CAPABILITY_MMXEXT  (1<<5)
714 #define CPU_CAPABILITY_SSE     (1<<6)
715 #define CPU_CAPABILITY_ALTIVEC (1<<16)
716 #define CPU_CAPABILITY_FPU     (1<<31)
717
718 /*****************************************************************************
719  * I18n stuff
720  *****************************************************************************/
721 VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) );
722
723 #if defined( ENABLE_NLS ) && \
724      (defined(MODULE_NAME_IS_gnome)||defined(MODULE_NAME_IS_gnome_main)||\
725       defined(MODULE_NAME_IS_gnome2)||defined(MODULE_NAME_IS_gnome2_main))
726     /* Declare nothing: gnome.h will do it for us */
727 #elif defined( ENABLE_NLS )
728 #if defined( HAVE_INCLUDED_GETTEXT )
729 #   include "libintl.h"
730 #else
731 #   include <libintl.h>
732 #endif
733 #   undef _
734 #if defined( __BORLANDC__ )
735 #define _(String) vlc_dgettext (PACKAGE_TARNAME, String)
736 #else
737 #   define _(String) vlc_dgettext (PACKAGE, String)
738 #endif
739 #   define N_(String) ((char*)(String))
740 #else
741 #   define _(String) ((char*)(String))
742 #   define N_(String) ((char*)(String))
743 #endif
744
745 /*****************************************************************************
746  * Additional vlc stuff
747  *****************************************************************************/
748 #include "vlc_symbols.h"
749 #include "os_specific.h"
750 #include "vlc_messages.h"
751 #include "variables.h"
752 #include "vlc_objects.h"
753 #include "vlc_threads_funcs.h"
754 #include "mtime.h"
755 #include "modules.h"
756 #include "main.h"
757 #include "configuration.h"
758
759 #if defined( __BORLANDC__ )
760 #   undef PACKAGE
761 #   define PACKAGE
762 #endif
763