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