1 /*****************************************************************************
2 * vlc_common.h: common definitions
3 * Collection of useful common types and macros definitions
4 *****************************************************************************
5 * Copyright (C) 1998-2011 VLC authors and VideoLAN
7 * Authors: Samuel Hocevar <sam@via.ecp.fr>
8 * Vincent Seguin <seguin@via.ecp.fr>
9 * Gildas Bazin <gbazin@videolan.org>
10 * RĂ©mi Denis-Courmont
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU Lesser General Public License as published by
14 * the Free Software Foundation; either version 2.1 of the License, or
15 * (at your option) any later version.
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 Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public License
23 * along with this program; if not, write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
29 * This file is a collection of common definitions and types
33 # define VLC_COMMON_H 1
35 /*****************************************************************************
36 * Required vlc headers
37 *****************************************************************************/
38 #include "vlc_config.h"
40 /*****************************************************************************
41 * Required system headers
42 *****************************************************************************/
55 /*****************************************************************************
56 * Compilers definitions
57 *****************************************************************************/
58 /* Helper for GCC version checks */
60 # define VLC_GCC_VERSION(maj,min) \
61 ((__GNUC__ > (maj)) || (__GNUC__ == (maj) && __GNUC_MINOR__ >= (min)))
63 # define VLC_GCC_VERSION(maj,min) (0)
66 /* Try to fix format strings for all versions of mingw and mingw64 */
67 #if defined( _WIN32 ) && defined( __USE_MINGW_ANSI_STDIO )
78 #define snprintf __mingw_snprintf
79 #define vsnprintf __mingw_vsnprintf
80 #define swprintf _snwprintf
83 /* Function attributes for compiler warnings */
85 # define VLC_DEPRECATED __attribute__((deprecated))
87 # if defined( _WIN32 ) && VLC_GCC_VERSION(4,4)
88 # define VLC_FORMAT(x,y) __attribute__ ((format(gnu_printf,x,y)))
90 # define VLC_FORMAT(x,y) __attribute__ ((format(printf,x,y)))
92 # define VLC_FORMAT_ARG(x) __attribute__ ((format_arg(x)))
94 # define VLC_MALLOC __attribute__ ((malloc))
95 # define VLC_NORETURN __attribute__ ((noreturn))
97 # if VLC_GCC_VERSION(3,4)
98 # define VLC_USED __attribute__ ((warn_unused_result))
104 # define VLC_DEPRECATED
105 # define VLC_FORMAT(x,y)
106 # define VLC_FORMAT_ARG(x)
108 # define VLC_NORETURN
113 /* Branch prediction */
115 # define likely(p) __builtin_expect(!!(p), 1)
116 # define unlikely(p) __builtin_expect(!!(p), 0)
118 # define likely(p) (!!(p))
119 # define unlikely(p) (!!(p))
124 # define VLC_EXTERN extern "C"
129 #if defined (_WIN32) && defined (DLL_EXPORT)
130 # define VLC_EXPORT __declspec(dllexport)
131 #elif VLC_GCC_VERSION(4,0)
132 # define VLC_EXPORT __attribute__((visibility("default")))
137 #define VLC_API VLC_EXTERN VLC_EXPORT
140 /*****************************************************************************
141 * Basic types definitions
142 *****************************************************************************/
144 * High precision date or time interval
146 * Store a high precision date or time interval. The maximum precision is the
147 * microsecond, and a 64 bits integer is used to avoid overflows (maximum
148 * time interval is then 292271 years, which should be long enough for any
149 * video). Dates are stored as microseconds since a common date (usually the
150 * epoch). Note that date and time intervals can be manipulated using regular
151 * arithmetic operators, and that no special functions are required.
153 typedef int64_t mtime_t
;
156 * The vlc_fourcc_t type.
158 * See http://www.webartz.com/fourcc/ for a very detailed list.
160 typedef uint32_t vlc_fourcc_t
;
162 #ifdef WORDS_BIGENDIAN
163 # define VLC_FOURCC( a, b, c, d ) \
164 ( ((uint32_t)d) | ( ((uint32_t)c) << 8 ) \
165 | ( ((uint32_t)b) << 16 ) | ( ((uint32_t)a) << 24 ) )
166 # define VLC_TWOCC( a, b ) \
167 ( (uint16_t)(b) | ( (uint16_t)(a) << 8 ) )
170 # define VLC_FOURCC( a, b, c, d ) \
171 ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
172 | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
173 # define VLC_TWOCC( a, b ) \
174 ( (uint16_t)(a) | ( (uint16_t)(b) << 8 ) )
179 * Translate a vlc_fourcc into its string representation. This function
180 * assumes there is enough room in psz_fourcc to store 4 characters in.
182 * \param fcc a vlc_fourcc_t
183 * \param psz_fourcc string to store string representation of vlc_fourcc in
185 static inline void vlc_fourcc_to_char( vlc_fourcc_t fcc
, char *psz_fourcc
)
187 memcpy( psz_fourcc
, &fcc
, 4 );
190 #define vlc_fourcc_to_char( a, b ) \
191 vlc_fourcc_to_char( (vlc_fourcc_t)(a), (char *)(b) )
193 /*****************************************************************************
194 * Classes declaration
195 *****************************************************************************/
198 typedef struct vlc_list_t vlc_list_t
;
199 typedef struct vlc_object_t vlc_object_t
;
200 typedef struct libvlc_int_t libvlc_int_t
;
201 typedef struct date_t date_t
;
210 PLAYLIST_PLAY
, /**< No arg. res=can fail*/
211 PLAYLIST_VIEWPLAY
, /**< arg1= playlist_item_t*,*/
212 /** arg2 = playlist_item_t* , res=can fail */
213 PLAYLIST_PAUSE
, /**< No arg res=can fail*/
214 PLAYLIST_STOP
, /**< No arg res=can fail*/
215 PLAYLIST_SKIP
, /**< arg1=int, res=can fail*/
216 } playlist_command_t
;
219 typedef struct playlist_t playlist_t
;
220 typedef struct playlist_item_t playlist_item_t
;
221 typedef struct services_discovery_t services_discovery_t
;
222 typedef struct services_discovery_sys_t services_discovery_sys_t
;
223 typedef struct playlist_add_t playlist_add_t
;
226 typedef struct module_t module_t
;
227 typedef struct module_config_t module_config_t
;
229 typedef struct config_category_t config_category_t
;
232 typedef struct input_thread_t input_thread_t
;
233 typedef struct input_item_t input_item_t
;
234 typedef struct input_item_node_t input_item_node_t
;
235 typedef struct access_t access_t
;
236 typedef struct access_sys_t access_sys_t
;
237 typedef struct stream_t stream_t
;
238 typedef struct stream_sys_t stream_sys_t
;
239 typedef struct demux_t demux_t
;
240 typedef struct demux_sys_t demux_sys_t
;
241 typedef struct es_out_t es_out_t
;
242 typedef struct es_out_id_t es_out_id_t
;
243 typedef struct es_out_sys_t es_out_sys_t
;
244 typedef struct seekpoint_t seekpoint_t
;
245 typedef struct info_t info_t
;
246 typedef struct info_category_t info_category_t
;
247 typedef struct input_attachment_t input_attachment_t
;
250 typedef struct audio_format_t audio_format_t
;
251 typedef struct video_format_t video_format_t
;
252 typedef struct subs_format_t subs_format_t
;
253 typedef struct es_format_t es_format_t
;
254 typedef struct video_palette_t video_palette_t
;
257 typedef struct audio_output audio_output_t
;
258 typedef struct aout_sys_t aout_sys_t
;
259 typedef audio_format_t audio_sample_format_t
;
262 typedef struct vout_thread_t vout_thread_t
;
264 typedef video_format_t video_frame_format_t
;
265 typedef struct picture_t picture_t
;
266 typedef struct picture_sys_t picture_sys_t
;
269 typedef struct spu_t spu_t
;
270 typedef struct subpicture_t subpicture_t
;
271 typedef struct subpicture_region_t subpicture_region_t
;
273 typedef struct image_handler_t image_handler_t
;
276 typedef struct sout_instance_t sout_instance_t
;
278 typedef struct sout_input_t sout_input_t
;
279 typedef struct sout_packetizer_input_t sout_packetizer_input_t
;
281 typedef struct sout_access_out_t sout_access_out_t
;
282 typedef struct sout_access_out_sys_t sout_access_out_sys_t
;
284 typedef struct sout_mux_t sout_mux_t
;
285 typedef struct sout_mux_sys_t sout_mux_sys_t
;
287 typedef struct sout_stream_t sout_stream_t
;
288 typedef struct sout_stream_sys_t sout_stream_sys_t
;
290 typedef struct config_chain_t config_chain_t
;
291 typedef struct session_descriptor_t session_descriptor_t
;
294 typedef struct decoder_t decoder_t
;
295 typedef struct decoder_sys_t decoder_sys_t
;
296 typedef struct decoder_synchro_t decoder_synchro_t
;
299 typedef struct encoder_t encoder_t
;
300 typedef struct encoder_sys_t encoder_sys_t
;
303 typedef struct filter_t filter_t
;
304 typedef struct filter_sys_t filter_sys_t
;
307 typedef struct virtual_socket_t v_socket_t
;
308 typedef struct vlc_url_t vlc_url_t
;
311 typedef struct iso639_lang_t iso639_lang_t
;
314 typedef struct block_t block_t
;
315 typedef struct block_fifo_t block_fifo_t
;
318 typedef struct md5_s md5_t
;
321 typedef struct xml_t xml_t
;
322 typedef struct xml_sys_t xml_sys_t
;
323 typedef struct xml_reader_t xml_reader_t
;
324 typedef struct xml_reader_sys_t xml_reader_sys_t
;
327 typedef struct vod_t vod_t
;
328 typedef struct vod_sys_t vod_sys_t
;
329 typedef struct vod_media_t vod_media_t
;
332 typedef struct vlm_t vlm_t
;
333 typedef struct vlm_message_t vlm_message_t
;
336 typedef struct vlc_meta_t vlc_meta_t
;
337 typedef struct input_stats_t input_stats_t
;
340 typedef struct update_t update_t
;
343 * VLC value structure
352 vlc_object_t
* p_object
;
355 struct { int32_t x
; int32_t y
; } coords
;
365 vlc_value_t
* p_values
;
370 /*****************************************************************************
371 * Error values (shouldn't be exposed)
372 *****************************************************************************/
373 #define VLC_SUCCESS (-0) /**< No error */
374 #define VLC_EGENERIC (-1) /**< Unspecified error */
375 #define VLC_ENOMEM (-2) /**< Not enough memory */
376 #define VLC_ETIMEOUT (-3) /**< Timeout */
377 #define VLC_ENOMOD (-4) /**< Module not found */
378 #define VLC_ENOOBJ (-5) /**< Object not found */
379 #define VLC_ENOVAR (-6) /**< Variable not found */
380 #define VLC_EBADVAR (-7) /**< Bad variable value */
381 #define VLC_ENOITEM (-8) /**< Item not found */
383 /*****************************************************************************
385 *****************************************************************************/
386 typedef int ( * vlc_callback_t
) ( vlc_object_t
*, /* variable's object */
387 char const *, /* variable name */
388 vlc_value_t
, /* old value */
389 vlc_value_t
, /* new value */
390 void * ); /* callback data */
392 /*****************************************************************************
393 * OS-specific headers and thread types
394 *****************************************************************************/
395 #if defined( _WIN32 )
398 # define PATH_MAX MAX_PATH
400 # include <windows.h>
404 #include <sys/syslimits.h>
408 # define OS2EMX_PLAIN_CHAR
414 #include "vlc_mtime.h"
415 #include "vlc_threads.h"
417 /*****************************************************************************
418 * Common structure members
419 *****************************************************************************/
421 /* VLC_COMMON_MEMBERS : members common to all basic vlc objects */
422 #define VLC_COMMON_MEMBERS \
423 /** \name VLC_COMMON_MEMBERS \
424 * these members are common for all vlc objects \
427 const char *psz_object_type; \
429 /* Messages header */ \
433 /* Object properties */ \
434 bool b_force; /**< set by the outside (eg. module_need()) */ \
436 /* Stuff related to the libvlc structure */ \
437 libvlc_int_t *p_libvlc; /**< (root of all evil) - 1 */ \
439 vlc_object_t * p_parent; /**< our parent */ \
443 /* VLC_OBJECT: attempt at doing a clever cast */
444 #if VLC_GCC_VERSION(4,0)
446 # define VLC_OBJECT( x ) \
447 __builtin_choose_expr( \
448 __builtin_offsetof(__typeof__(*(x)), psz_object_type), \
449 (void)0 /* screw you */, \
452 # define VLC_OBJECT( x ) \
453 ((vlc_object_t *)(x) \
454 + 0 * __builtin_offsetof(__typeof__(*(x)), psz_object_type))
457 # define VLC_OBJECT( x ) ((vlc_object_t *)(x))
460 /*****************************************************************************
461 * Macros and inline functions
462 *****************************************************************************/
464 /* CEIL: division with round to nearest greater integer */
465 #define CEIL(n, d) ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
467 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
468 #define PAD(n, d) ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
470 /* __MAX and __MIN: self explanatory */
472 # define __MAX(a, b) ( ((a) > (b)) ? (a) : (b) )
475 # define __MIN(a, b) ( ((a) < (b)) ? (a) : (b) )
478 /* clip v in [min, max] */
479 #define VLC_CLIP(v, min, max) __MIN(__MAX((v), (min)), (max))
482 static inline int64_t GCD ( int64_t a
, int64_t b
)
493 /* function imported from libavutil/common.h */
495 static inline uint8_t clip_uint8_vlc( int32_t a
)
497 if( a
&(~255) ) return (-a
)>>31;
501 /** Count leading zeroes */
503 static inline unsigned clz (unsigned x
)
505 #if VLC_GCC_VERSION(3,4)
506 return __builtin_clz (x
);
508 unsigned i
= sizeof (x
) * 8;
519 #define clz8( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint8_t)) * 8))
520 #define clz16( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint16_t)) * 8))
521 /* XXX: this assumes that int is 32-bits or more */
522 #define clz32( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint32_t)) * 8))
524 /** Count trailing zeroes */
526 static inline unsigned ctz (unsigned x
)
528 #if VLC_GCC_VERSION(3,4)
529 return __builtin_ctz (x
);
531 unsigned i
= sizeof (x
) * 8;
544 static inline unsigned popcount (unsigned x
)
546 #if VLC_GCC_VERSION(3,4)
547 return __builtin_popcount (x
);
560 static inline unsigned parity (unsigned x
)
562 #if VLC_GCC_VERSION(3,4)
563 return __builtin_parity (x
);
565 for (unsigned i
= 4 * sizeof (x
); i
> 0; i
/= 2)
577 /** Byte swap (16 bits) */
579 static inline uint16_t bswap16 (uint16_t x
)
581 return (x
<< 8) | (x
>> 8);
584 /** Byte swap (32 bits) */
586 static inline uint32_t bswap32 (uint32_t x
)
588 #if VLC_GCC_VERSION(4,3) || defined(__clang__)
589 return __builtin_bswap32 (x
);
591 return ((x
& 0x000000FF) << 24)
592 | ((x
& 0x0000FF00) << 8)
593 | ((x
& 0x00FF0000) >> 8)
594 | ((x
& 0xFF000000) >> 24);
598 /** Byte swap (64 bits) */
600 static inline uint64_t bswap64 (uint64_t x
)
602 #if VLC_GCC_VERSION(4,3) || defined(__clang__)
603 return __builtin_bswap64 (x
);
604 #elif !defined (__cplusplus)
605 return ((x
& 0x00000000000000FF) << 56)
606 | ((x
& 0x000000000000FF00) << 40)
607 | ((x
& 0x0000000000FF0000) << 24)
608 | ((x
& 0x00000000FF000000) << 8)
609 | ((x
& 0x000000FF00000000) >> 8)
610 | ((x
& 0x0000FF0000000000) >> 24)
611 | ((x
& 0x00FF000000000000) >> 40)
612 | ((x
& 0xFF00000000000000) >> 56);
614 return ((x
& 0x00000000000000FFULL
) << 56)
615 | ((x
& 0x000000000000FF00ULL
) << 40)
616 | ((x
& 0x0000000000FF0000ULL
) << 24)
617 | ((x
& 0x00000000FF000000ULL
) << 8)
618 | ((x
& 0x000000FF00000000ULL
) >> 8)
619 | ((x
& 0x0000FF0000000000ULL
) >> 24)
620 | ((x
& 0x00FF000000000000ULL
) >> 40)
621 | ((x
& 0xFF00000000000000ULL
) >> 56);
626 /* Free and set set the variable to NULL */
627 #define FREENULL(a) do { free( a ); a = NULL; } while(0)
629 #define EMPTY_STR(str) (!str || !*str)
631 VLC_API
char const * vlc_error( int ) VLC_USED
;
633 #include <vlc_arrays.h>
635 /* MSB (big endian)/LSB (little endian) conversions - network order is always
636 * MSB, and should be used for both network communications and files. */
638 #ifdef WORDS_BIGENDIAN
639 # define hton16(i) ((uint16_t)(i))
640 # define hton32(i) ((uint32_t)(i))
641 # define hton64(i) ((uint64_t)(i))
643 # define hton16(i) bswap16(i)
644 # define hton32(i) bswap32(i)
645 # define hton64(i) bswap64(i)
647 #define ntoh16(i) hton16(i)
648 #define ntoh32(i) hton32(i)
649 #define ntoh64(i) hton64(i)
651 /** Reads 16 bits in network byte order */
653 static inline uint16_t U16_AT (const void *p
)
657 memcpy (&x
, p
, sizeof (x
));
661 /** Reads 32 bits in network byte order */
663 static inline uint32_t U32_AT (const void *p
)
667 memcpy (&x
, p
, sizeof (x
));
671 /** Reads 64 bits in network byte order */
673 static inline uint64_t U64_AT (const void *p
)
677 memcpy (&x
, p
, sizeof (x
));
681 #define GetWBE(p) U16_AT(p)
682 #define GetDWBE(p) U32_AT(p)
683 #define GetQWBE(p) U64_AT(p)
685 /** Reads 16 bits in little-endian order */
687 static inline uint16_t GetWLE (const void *p
)
691 memcpy (&x
, p
, sizeof (x
));
692 #ifdef WORDS_BIGENDIAN
698 /** Reads 32 bits in little-endian order */
700 static inline uint32_t GetDWLE (const void *p
)
704 memcpy (&x
, p
, sizeof (x
));
705 #ifdef WORDS_BIGENDIAN
711 /** Reads 64 bits in little-endian order */
713 static inline uint64_t GetQWLE (const void *p
)
717 memcpy (&x
, p
, sizeof (x
));
718 #ifdef WORDS_BIGENDIAN
724 /** Writes 16 bits in network byte order */
725 static inline void SetWBE (void *p
, uint16_t w
)
728 memcpy (p
, &w
, sizeof (w
));
731 /** Writes 32 bits in network byte order */
732 static inline void SetDWBE (void *p
, uint32_t dw
)
735 memcpy (p
, &dw
, sizeof (dw
));
738 /** Writes 64 bits in network byte order */
739 static inline void SetQWBE (void *p
, uint64_t qw
)
742 memcpy (p
, &qw
, sizeof (qw
));
745 /** Writes 16 bits in little endian order */
746 static inline void SetWLE (void *p
, uint16_t w
)
748 #ifdef WORDS_BIGENDIAN
751 memcpy (p
, &w
, sizeof (w
));
754 /** Writes 32 bits in little endian order */
755 static inline void SetDWLE (void *p
, uint32_t dw
)
757 #ifdef WORDS_BIGENDIAN
760 memcpy (p
, &dw
, sizeof (dw
));
763 /** Writes 64 bits in little endian order */
764 static inline void SetQWLE (void *p
, uint64_t qw
)
766 #ifdef WORDS_BIGENDIAN
769 memcpy (p
, &qw
, sizeof (qw
));
773 #define VLC_UNUSED(x) (void)(x)
775 /* Stuff defined in src/extras/libc.c */
778 /* several type definitions */
779 # if defined( __MINGW32__ )
780 # if !defined( _OFF_T_ )
781 typedef long long _off_t
;
782 typedef _off_t off_t
;
788 # define off_t long long
793 # define O_NONBLOCK 0
799 VLC_API
bool vlc_ureduce( unsigned *, unsigned *, uint64_t, uint64_t, uint64_t );
801 /* Aligned memory allocator */
803 #include <AvailabilityMacros.h>
807 # define vlc_memalign(align, size) (__mingw_aligned_malloc(size, align))
808 # define vlc_free(base) (__mingw_aligned_free(base))
809 #elif defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
810 static inline void *vlc_memalign(size_t align
, size_t size
)
815 ptr
= malloc(size
+align
);
818 diff
= ((-(long)ptr
- 1)&(align
-1)) + 1;
819 ptr
= (char*)ptr
+ diff
;
820 ((char*)ptr
)[-1]= diff
;
824 static void vlc_free(void *ptr
)
827 free((char*)ptr
- ((char*)ptr
)[-1]);
830 static inline void *vlc_memalign(size_t align
, size_t size
)
833 if (unlikely(posix_memalign(&base
, align
, size
)))
837 # define vlc_free(base) free(base)
840 VLC_API
void vlc_tdestroy( void *, void (*)(void *) );
842 /*****************************************************************************
844 *****************************************************************************/
845 VLC_API
char *vlc_gettext( const char *msgid
) VLC_FORMAT_ARG(1);
846 VLC_API
char *vlc_ngettext( const char *s
, const char *p
, unsigned long n
) VLC_FORMAT_ARG(1) VLC_FORMAT_ARG(2);
848 #define vlc_pgettext( ctx, id ) \
849 vlc_pgettext_aux( ctx "\004" id, id )
852 static inline const char *vlc_pgettext_aux( const char *ctx
, const char *id
)
854 const char *tr
= vlc_gettext( ctx
);
855 return (tr
== ctx
) ? id
: tr
;
858 /*****************************************************************************
859 * Loosy memory allocation functions. Do not use in new code.
860 *****************************************************************************/
861 static inline void *xmalloc (size_t len
)
863 void *ptr
= malloc (len
);
864 if (unlikely (ptr
== NULL
))
869 static inline void *xrealloc (void *ptr
, size_t len
)
871 void *nptr
= realloc (ptr
, len
);
872 if (unlikely (nptr
== NULL
))
877 static inline void *xcalloc (size_t n
, size_t size
)
879 void *ptr
= calloc (n
, size
);
880 if (unlikely (ptr
== NULL
))
885 static inline char *xstrdup (const char *str
)
887 char *ptr
= strdup (str
);
888 if (unlikely(ptr
== NULL
))
893 /*****************************************************************************
895 *****************************************************************************/
896 VLC_API
const char * VLC_CompileBy( void ) VLC_USED
;
897 VLC_API
const char * VLC_CompileHost( void ) VLC_USED
;
898 VLC_API
const char * VLC_Compiler( void ) VLC_USED
;
900 /*****************************************************************************
901 * Additional vlc stuff
902 *****************************************************************************/
903 #include "vlc_messages.h"
904 #include "vlc_objects.h"
905 #include "vlc_variables.h"
906 #include "vlc_main.h"
907 #include "vlc_configuration.h"
909 #if defined( _WIN32 ) || defined( __SYMBIAN32__ ) || defined( __OS2__ )
910 # define DIR_SEP_CHAR '\\'
911 # define DIR_SEP "\\"
912 # define PATH_SEP_CHAR ';'
913 # define PATH_SEP ";"
915 # define DIR_SEP_CHAR '/'
917 # define PATH_SEP_CHAR ':'
918 # define PATH_SEP ":"
921 #define LICENSE_MSG \
922 _("This program comes with NO WARRANTY, to the extent permitted by " \
923 "law.\nYou may redistribute it under the terms of the GNU General " \
924 "Public License;\nsee the file named COPYING for details.\n" \
925 "Written by the VideoLAN team; see the AUTHORS file.\n")
927 #endif /* !VLC_COMMON_H */