VLC  3.0.23
vlc_common.h
Go to the documentation of this file.
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
6  *
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
11  *
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.
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 Lesser General Public License for more details.
21  *
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  *****************************************************************************/
26 
27 /**
28  * \file
29  * This file is a collection of common definitions and types
30  */
31 
32 #ifndef VLC_COMMON_H
33 # define VLC_COMMON_H 1
34 
35 /*****************************************************************************
36  * Required vlc headers
37  *****************************************************************************/
38 #include "vlc_config.h"
39 
40 /*****************************************************************************
41  * Required system headers
42  *****************************************************************************/
43 #include <stdlib.h>
44 #include <stdarg.h>
45 
46 #include <string.h>
47 #include <stdio.h>
48 #include <inttypes.h>
49 #include <stddef.h>
50 
51 #ifndef __cplusplus
52 # include <stdbool.h>
53 #endif
54 
55 /*****************************************************************************
56  * Compilers definitions
57  *****************************************************************************/
58 /* Helper for GCC version checks */
59 #ifdef __GNUC__
60 # define VLC_GCC_VERSION(maj,min) \
61  ((__GNUC__ > (maj)) || (__GNUC__ == (maj) && __GNUC_MINOR__ >= (min)))
62 #else
63 # define VLC_GCC_VERSION(maj,min) (0)
64 #endif
65 
66 /* Try to fix format strings for all versions of mingw and mingw64 */
67 #if defined( _WIN32 ) && defined( __USE_MINGW_ANSI_STDIO )
68  #undef PRId64
69  #define PRId64 "lld"
70  #undef PRIi64
71  #define PRIi64 "lli"
72  #undef PRIu64
73  #define PRIu64 "llu"
74  #undef PRIo64
75  #define PRIo64 "llo"
76  #undef PRIx64
77  #define PRIx64 "llx"
78  #define snprintf __mingw_snprintf
79  #define vsnprintf __mingw_vsnprintf
80  #define swprintf _snwprintf
81 #endif
82 
83 /* Function attributes for compiler warnings */
84 #ifdef __GNUC__
85 # define VLC_DEPRECATED __attribute__((deprecated))
86 # if VLC_GCC_VERSION(6,0)
87 # define VLC_DEPRECATED_ENUM __attribute__((deprecated))
88 # else
89 # define VLC_DEPRECATED_ENUM
90 # endif
91 
92 # if defined( _WIN32 ) && !defined( __clang__ )
93 # define VLC_FORMAT(x,y) __attribute__ ((format(gnu_printf,x,y)))
94 # else
95 # define VLC_FORMAT(x,y) __attribute__ ((format(printf,x,y)))
96 # endif
97 # define VLC_FORMAT_ARG(x) __attribute__ ((format_arg(x)))
98 # define VLC_MALLOC __attribute__ ((malloc))
99 # define VLC_USED __attribute__ ((warn_unused_result))
100 
101 #else
102 # define VLC_DEPRECATED
103 # define VLC_DEPRECATED_ENUM
104 # define VLC_FORMAT(x,y)
105 # define VLC_FORMAT_ARG(x)
106 # define VLC_MALLOC
107 # define VLC_USED
108 #endif
109 
110 
111 /* Branch prediction */
112 #ifdef __GNUC__
113 # define likely(p) __builtin_expect(!!(p), 1)
114 # define unlikely(p) __builtin_expect(!!(p), 0)
115 # if !defined(unreachable)
116 # define unreachable() __builtin_unreachable()
117 # endif
118 #else
119 # define likely(p) (!!(p))
120 # define unlikely(p) (!!(p))
121 # define unreachable() ((void)0)
122 #endif
123 
124 #define vlc_assert_unreachable() (assert(!"unreachable"), unreachable())
125 
126 /* Linkage */
127 #ifdef __cplusplus
128 # define VLC_EXTERN extern "C"
129 #else
130 # define VLC_EXTERN
131 #endif
132 
133 #if defined (_WIN32) && defined (DLL_EXPORT)
134 # define VLC_EXPORT __declspec(dllexport)
135 #elif defined (__GNUC__)
136 # define VLC_EXPORT __attribute__((visibility("default")))
137 #else
138 # define VLC_EXPORT
139 #endif
140 
141 #define VLC_API VLC_EXTERN VLC_EXPORT
142 
143 
144 /*****************************************************************************
145  * Basic types definitions
146  *****************************************************************************/
147 /**
148  * 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 vlc_tick_t;
158 typedef vlc_tick_t mtime_t; /* deprecated, use vlc_tick_t */
159 
160 #define VLC_TICK_INVALID VLC_TS_INVALID
161 #define VLC_TICK_0 VLC_TS_0
162 
163 /**
164  * The vlc_fourcc_t type.
165  *
166  * See http://www.webartz.com/fourcc/ for a very detailed list.
167  */
168 typedef uint32_t vlc_fourcc_t;
169 
170 #ifdef WORDS_BIGENDIAN
171 # define VLC_FOURCC( a, b, c, d ) \
172  ( ((uint32_t)d) | ( ((uint32_t)c) << 8 ) \
173  | ( ((uint32_t)b) << 16 ) | ( ((uint32_t)a) << 24 ) )
174 # define VLC_TWOCC( a, b ) \
175  ( (uint16_t)(b) | ( (uint16_t)(a) << 8 ) )
176 
177 #else
178 # define VLC_FOURCC( a, b, c, d ) \
179  ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
180  | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
181 # define VLC_TWOCC( a, b ) \
182  ( (uint16_t)(a) | ( (uint16_t)(b) << 8 ) )
183 
184 #endif
185 
186 /**
187  * Translate a vlc_fourcc into its string representation. This function
188  * assumes there is enough room in psz_fourcc to store 4 characters in.
189  *
190  * \param fcc a vlc_fourcc_t
191  * \param psz_fourcc string to store string representation of vlc_fourcc in
192  */
193 static inline void vlc_fourcc_to_char( vlc_fourcc_t fcc, char *psz_fourcc )
194 {
195  memcpy( psz_fourcc, &fcc, 4 );
196 }
197 
198 /*****************************************************************************
199  * Classes declaration
200  *****************************************************************************/
201 
202 /* Internal types */
203 typedef struct vlc_list_t vlc_list_t;
204 typedef struct vlc_object_t vlc_object_t;
205 typedef struct libvlc_int_t libvlc_int_t;
206 typedef struct date_t date_t;
207 
208 /* Playlist */
209 
210 typedef struct playlist_t playlist_t;
211 typedef struct playlist_item_t playlist_item_t;
216 
217 /* Modules */
218 typedef struct module_t module_t;
220 
222 
223 /* Input */
225 typedef struct input_item_t input_item_t;
227 typedef struct access_sys_t access_sys_t;
228 typedef struct stream_t stream_t;
229 typedef struct stream_sys_t stream_sys_t;
230 typedef struct demux_t demux_t;
231 typedef struct demux_sys_t demux_sys_t;
232 typedef struct es_out_t es_out_t;
233 typedef struct es_out_id_t es_out_id_t;
234 typedef struct es_out_sys_t es_out_sys_t;
235 typedef struct seekpoint_t seekpoint_t;
236 typedef struct info_t info_t;
239 
240 /* Format */
241 typedef struct audio_format_t audio_format_t;
244 typedef struct es_format_t es_format_t;
245 typedef struct video_palette_t video_palette_t;
246 
247 /* Audio */
249 typedef struct aout_sys_t aout_sys_t;
251 
252 /* Video */
253 typedef struct vout_thread_t vout_thread_t;
254 typedef struct vlc_viewpoint_t vlc_viewpoint_t;
255 
257 typedef struct picture_t picture_t;
258 typedef struct picture_sys_t picture_sys_t;
259 
260 /* Subpictures */
261 typedef struct spu_t spu_t;
262 typedef struct subpicture_t subpicture_t;
264 
266 
267 /* Stream output */
269 
270 typedef struct sout_input_t sout_input_t;
272 
275 
276 typedef struct sout_mux_t sout_mux_t;
278 
279 typedef struct sout_stream_t sout_stream_t;
281 
284 
285 /* Decoders */
286 typedef struct decoder_t decoder_t;
287 typedef struct decoder_sys_t decoder_sys_t;
288 typedef struct decoder_synchro_t decoder_synchro_t;
289 
290 /* Encoders */
291 typedef struct encoder_t encoder_t;
292 typedef struct encoder_sys_t encoder_sys_t;
293 
294 /* Filters */
295 typedef struct filter_t filter_t;
296 typedef struct filter_sys_t filter_sys_t;
297 
298 /* Network */
299 typedef struct vlc_url_t vlc_url_t;
300 
301 /* Misc */
302 typedef struct iso639_lang_t iso639_lang_t;
303 
304 /* block */
305 typedef struct block_t block_t;
306 typedef struct block_fifo_t block_fifo_t;
307 
308 /* Hashing */
309 typedef struct md5_s md5_t;
310 
311 /* XML */
312 typedef struct xml_t xml_t;
313 typedef struct xml_sys_t xml_sys_t;
314 typedef struct xml_reader_t xml_reader_t;
315 typedef struct xml_reader_sys_t xml_reader_sys_t;
316 
317 /* vod server */
318 typedef struct vod_t vod_t;
319 typedef struct vod_sys_t vod_sys_t;
320 typedef struct vod_media_t vod_media_t;
321 
322 /* VLM */
323 typedef struct vlm_t vlm_t;
324 typedef struct vlm_message_t vlm_message_t;
325 
326 /* misc */
327 typedef struct vlc_meta_t vlc_meta_t;
328 typedef struct input_stats_t input_stats_t;
329 typedef struct addon_entry_t addon_entry_t;
330 
331 /* Update */
332 typedef struct update_t update_t;
333 
334 /**
335  * VLC value structure
336  */
337 typedef union
338 {
339  int64_t i_int;
340  bool b_bool;
341  float f_float;
342  char * psz_string;
343  void * p_address;
344  vlc_list_t * p_list;
345  struct { int32_t x; int32_t y; } coords;
346 
347 } vlc_value_t;
348 
349 /**
350  * VLC list structure
351  */
352 struct vlc_list_t
353 {
354  int i_type;
355  int i_count;
357 };
358 
359 /*****************************************************************************
360  * Error values (shouldn't be exposed)
361  *****************************************************************************/
362 #define VLC_SUCCESS (-0) /**< No error */
363 #define VLC_EGENERIC (-1) /**< Unspecified error */
364 #define VLC_ENOMEM (-2) /**< Not enough memory */
365 #define VLC_ETIMEOUT (-3) /**< Timeout */
366 #define VLC_ENOMOD (-4) /**< Module not found */
367 #define VLC_ENOOBJ (-5) /**< Object not found */
368 #define VLC_ENOVAR (-6) /**< Variable not found */
369 #define VLC_EBADVAR (-7) /**< Bad variable value */
370 #define VLC_ENOITEM (-8) /**< Item not found */
371 
372 /*****************************************************************************
373  * Variable callbacks: called when the value is modified
374  *****************************************************************************/
375 typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
376  char const *, /* variable name */
377  vlc_value_t, /* old value */
378  vlc_value_t, /* new value */
379  void * ); /* callback data */
380 
381 /*****************************************************************************
382  * List callbacks: called when elements are added/removed from the list
383  *****************************************************************************/
384 typedef int ( * vlc_list_callback_t ) ( vlc_object_t *, /* variable's object */
385  char const *, /* variable name */
386  int, /* VLC_VAR_* action */
387  vlc_value_t *, /* new/deleted value */
388  void *); /* callback data */
389 
390 /*****************************************************************************
391  * OS-specific headers and thread types
392  *****************************************************************************/
393 #if defined( _WIN32 )
394 # include <malloc.h>
395 # ifndef PATH_MAX
396 # define PATH_MAX MAX_PATH
397 # endif
398 # include <windows.h>
399 #endif
400 
401 #ifdef __APPLE__
402 #include <sys/syslimits.h>
403 #include <AvailabilityMacros.h>
404 #endif
405 
406 #ifdef __OS2__
407 # define OS2EMX_PLAIN_CHAR
408 # define INCL_BASE
409 # define INCL_PM
410 # include <os2safe.h>
411 # include <os2.h>
412 #endif
413 
414 #include "vlc_mtime.h"
415 #include "vlc_threads.h"
416 
417 /**
418  * Common structure members
419  *****************************************************************************/
420 
421 /**
422  * VLC object common members
423  *
424  * Common public properties for all VLC objects.
425  * Object also have private properties maintained by the core, see
426  * \ref vlc_object_internals_t
427  */
428 struct vlc_common_members
429 {
430  /** Object type name
431  *
432  * A constant string identifying the type of the object (for logging)
433  */
434  const char *object_type;
435 
436  /** Log messages header
437  *
438  * Human-readable header for log messages. This is not thread-safe and
439  * only used by VLM and Lua interfaces.
440  */
441  char *header;
442 
443  int flags;
444 
445  /** Module probe flag
446  *
447  * A boolean during module probing when the probe is "forced".
448  * See \ref module_need().
449  */
450  bool force;
451 
452  /** LibVLC instance
453  *
454  * Root VLC object of the objects tree that this object belongs in.
455  */
457 
458  /** Parent object
459  *
460  * The parent VLC object in the objects tree. For the root (the LibVLC
461  * instance) object, this is NULL.
462  */
464 };
465 
466 /**
467  * Backward compatibility macro
468  */
469 #define VLC_COMMON_MEMBERS struct vlc_common_members obj;
470 
471 /**
472  * Type-safe vlc_object_t cast
473  *
474  * This macro attempts to cast a pointer to a compound type to a
475  * \ref vlc_object_t pointer in a type-safe manner.
476  * It checks if the compound type actually starts with an embedded
477  * \ref vlc_object_t structure.
478  */
479 #if !defined(__cplusplus)
480 # define VLC_OBJECT(x) \
481  _Generic((x)->obj, \
482  vlc_object_t: (vlc_object_t *)(&(x)->obj), \
483  struct vlc_common_members: (vlc_object_t *)(x) \
484  )
485 #else
486 # define VLC_OBJECT( x ) ((vlc_object_t *)&(x)->obj)
487 #endif
488 
489 /*****************************************************************************
490  * Macros and inline functions
491  *****************************************************************************/
492 
493 /* __MAX and __MIN: self explanatory */
494 #ifndef __MAX
495 # define __MAX(a, b) ( ((a) > (b)) ? (a) : (b) )
496 #endif
497 #ifndef __MIN
498 # define __MIN(a, b) ( ((a) < (b)) ? (a) : (b) )
499 #endif
500 
501 /* clip v in [min, max] */
502 #define VLC_CLIP(v, min, max) __MIN(__MAX((v), (min)), (max))
503 
504 VLC_USED
505 static inline int64_t GCD ( int64_t a, int64_t b )
506 {
507  while( b )
508  {
509  int64_t c = a % b;
510  a = b;
511  b = c;
512  }
513  return a;
514 }
515 
516 /* function imported from libavutil/common.h */
517 VLC_USED
518 static inline uint8_t clip_uint8_vlc( int32_t a )
519 {
520  if( a&(~255) ) return (-a)>>31;
521  else return a;
522 }
523 
524 /** Count leading zeroes */
525 VLC_USED
526 static inline unsigned (clz)(unsigned x)
527 {
528 #ifdef __GNUC__
529  return __builtin_clz (x);
530 #else
531  unsigned i = sizeof (x) * 8;
532 
533  while (x)
534  {
535  x >>= 1;
536  i--;
537  }
538  return i;
539 #endif
540 }
541 
542 #define clz8( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint8_t)) * 8))
543 #define clz16( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint16_t)) * 8))
544 /* XXX: this assumes that int is 32-bits or more */
545 #define clz32( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint32_t)) * 8))
546 
547 /** Count trailing zeroes */
548 VLC_USED
549 static inline unsigned (ctz)(unsigned x)
550 {
551 #ifdef __GNUC__
552  return __builtin_ctz (x);
553 #else
554  unsigned i = sizeof (x) * 8;
555 
556  while (x)
557  {
558  x <<= 1;
559  i--;
560  }
561  return i;
562 #endif
563 }
564 
565 #if !defined(__NetBSD__)
566 /** Bit weight */
567 VLC_USED
568 static inline unsigned (popcount)(unsigned x)
569 {
570 #ifdef __GNUC__
571  return __builtin_popcount (x);
572 #else
573  unsigned count = 0;
574  while (x)
575  {
576  count += x & 1;
577  x = x >> 1;
578  }
579  return count;
580 #endif
581 }
582 
583 /** Bit weight of long long */
584 VLC_USED
585 static inline int (popcountll)(unsigned long long x)
586 {
587 #ifdef __GNUC__
588  return __builtin_popcountll(x);
589 #else
590  int count = 0;
591  while (x)
592  {
593  count += x & 1;
594  x = x >> 1;
595  }
596  return count;
597 #endif
598 }
599 #endif
600 
601 VLC_USED
602 static inline unsigned (parity)(unsigned x)
603 {
604 #ifdef __GNUC__
605  return __builtin_parity (x);
606 #else
607  for (unsigned i = 4 * sizeof (x); i > 0; i /= 2)
608  x ^= x >> i;
609  return x & 1;
610 #endif
611 }
612 
613 #if !defined(__NetBSD__)
614 /** Byte swap (16 bits) */
615 VLC_USED
616 static inline uint16_t (bswap16)(uint16_t x)
617 {
618  return (x << 8) | (x >> 8);
619 }
620 
621 /** Byte swap (32 bits) */
622 VLC_USED
623 static inline uint32_t (bswap32)(uint32_t x)
624 {
625 #if defined (__GNUC__) || defined(__clang__)
626  return __builtin_bswap32 (x);
627 #else
628  return ((x & 0x000000FF) << 24)
629  | ((x & 0x0000FF00) << 8)
630  | ((x & 0x00FF0000) >> 8)
631  | ((x & 0xFF000000) >> 24);
632 #endif
633 }
634 
635 /** Byte swap (64 bits) */
636 VLC_USED
637 static inline uint64_t (bswap64)(uint64_t x)
638 {
639 #if defined (__GNUC__) || defined(__clang__)
640  return __builtin_bswap64 (x);
641 #elif !defined (__cplusplus)
642  return ((x & 0x00000000000000FF) << 56)
643  | ((x & 0x000000000000FF00) << 40)
644  | ((x & 0x0000000000FF0000) << 24)
645  | ((x & 0x00000000FF000000) << 8)
646  | ((x & 0x000000FF00000000) >> 8)
647  | ((x & 0x0000FF0000000000) >> 24)
648  | ((x & 0x00FF000000000000) >> 40)
649  | ((x & 0xFF00000000000000) >> 56);
650 #else
651  return ((x & 0x00000000000000FFULL) << 56)
652  | ((x & 0x000000000000FF00ULL) << 40)
653  | ((x & 0x0000000000FF0000ULL) << 24)
654  | ((x & 0x00000000FF000000ULL) << 8)
655  | ((x & 0x000000FF00000000ULL) >> 8)
656  | ((x & 0x0000FF0000000000ULL) >> 24)
657  | ((x & 0x00FF000000000000ULL) >> 40)
658  | ((x & 0xFF00000000000000ULL) >> 56);
659 #endif
660 }
661 #endif
662 
663 /* Integer overflow */
664 static inline bool uadd_overflow(unsigned a, unsigned b, unsigned *res)
665 {
666 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
667  return __builtin_uadd_overflow(a, b, res);
668 #else
669  *res = a + b;
670  return (a + b) < a;
671 #endif
672 }
673 
674 static inline bool uaddl_overflow(unsigned long a, unsigned long b,
675  unsigned long *res)
676 {
677 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
678  return __builtin_uaddl_overflow(a, b, res);
679 #else
680  *res = a + b;
681  return (a + b) < a;
682 #endif
683 }
684 
685 static inline bool uaddll_overflow(unsigned long long a, unsigned long long b,
686  unsigned long long *res)
687 {
688 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
689  return __builtin_uaddll_overflow(a, b, res);
690 #else
691  *res = a + b;
692  return (a + b) < a;
693 #endif
694 }
695 
696 #ifndef __cplusplus
697 # define add_overflow(a,b,r) \
698  _Generic(*(r), \
699  unsigned: uadd_overflow(a, b, (unsigned *)(r)), \
700  unsigned long: uaddl_overflow(a, b, (unsigned long *)(r)), \
701  unsigned long long: uaddll_overflow(a, b, (unsigned long long *)(r)))
702 #else
703 static inline bool add_overflow(unsigned a, unsigned b, unsigned *res)
704 {
705  return uadd_overflow(a, b, res);
706 }
707 
708 static inline bool add_overflow(unsigned long a, unsigned long b,
709  unsigned long *res)
710 {
711  return uaddl_overflow(a, b, res);
712 }
713 
714 static inline bool add_overflow(unsigned long long a, unsigned long long b,
715  unsigned long long *res)
716 {
717  return uaddll_overflow(a, b, res);
718 }
719 #endif
720 
721 #if !(VLC_GCC_VERSION(5,0) || defined(__clang__))
722 # include <limits.h>
723 #endif
724 
725 static inline bool umul_overflow(unsigned a, unsigned b, unsigned *res)
726 {
727 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
728  return __builtin_umul_overflow(a, b, res);
729 #else
730  *res = a * b;
731  return b > 0 && a > (UINT_MAX / b);
732 #endif
733 }
734 
735 static inline bool umull_overflow(unsigned long a, unsigned long b,
736  unsigned long *res)
737 {
738 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
739  return __builtin_umull_overflow(a, b, res);
740 #else
741  *res = a * b;
742  return b > 0 && a > (ULONG_MAX / b);
743 #endif
744 }
745 
746 static inline bool umulll_overflow(unsigned long long a, unsigned long long b,
747  unsigned long long *res)
748 {
749 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
750  return __builtin_umulll_overflow(a, b, res);
751 #else
752  *res = a * b;
753  return b > 0 && a > (ULLONG_MAX / b);
754 #endif
755 }
756 
757 #ifndef __cplusplus
758 #define mul_overflow(a,b,r) \
759  _Generic(*(r), \
760  unsigned: umul_overflow(a, b, (unsigned *)(r)), \
761  unsigned long: umull_overflow(a, b, (unsigned long *)(r)), \
762  unsigned long long: umulll_overflow(a, b, (unsigned long long *)(r)))
763 #else
764 static inline bool mul_overflow(unsigned a, unsigned b, unsigned *res)
765 {
766  return umul_overflow(a, b, res);
767 }
768 
769 static inline bool mul_overflow(unsigned long a, unsigned long b,
770  unsigned long *res)
771 {
772  return umull_overflow(a, b, res);
773 }
774 
775 static inline bool mul_overflow(unsigned long long a, unsigned long long b,
776  unsigned long long *res)
777 {
778  return umulll_overflow(a, b, res);
779 }
780 #endif
781 
782 /* Free and set set the variable to NULL */
783 #define FREENULL(a) do { free( a ); a = NULL; } while(0)
784 
785 #define EMPTY_STR(str) (!str || !*str)
786 
787 VLC_API char const * vlc_error( int ) VLC_USED;
788 
789 #include <vlc_arrays.h>
790 
791 /* MSB (big endian)/LSB (little endian) conversions - network order is always
792  * MSB, and should be used for both network communications and files. */
793 
794 #ifdef WORDS_BIGENDIAN
795 # define hton16(i) ((uint16_t)(i))
796 # define hton32(i) ((uint32_t)(i))
797 # define hton64(i) ((uint64_t)(i))
798 #else
799 # define hton16(i) bswap16(i)
800 # define hton32(i) bswap32(i)
801 # define hton64(i) bswap64(i)
802 #endif
803 #define ntoh16(i) hton16(i)
804 #define ntoh32(i) hton32(i)
805 #define ntoh64(i) hton64(i)
806 
807 /** Reads 16 bits in network byte order */
809 static inline uint16_t U16_AT (const void *p)
810 {
811  uint16_t x;
812 
813  memcpy (&x, p, sizeof (x));
814  return ntoh16 (x);
815 }
816 
817 /** Reads 32 bits in network byte order */
819 static inline uint32_t U32_AT (const void *p)
820 {
821  uint32_t x;
822 
823  memcpy (&x, p, sizeof (x));
824  return ntoh32 (x);
825 }
826 
827 /** Reads 64 bits in network byte order */
829 static inline uint64_t U64_AT (const void *p)
830 {
831  uint64_t x;
832 
833  memcpy (&x, p, sizeof (x));
834  return ntoh64 (x);
835 }
836 
837 #define GetWBE(p) U16_AT(p)
838 #define GetDWBE(p) U32_AT(p)
839 #define GetQWBE(p) U64_AT(p)
840 
841 /** Reads 16 bits in little-endian order */
842 VLC_USED
843 static inline uint16_t GetWLE (const void *p)
844 {
845  uint16_t x;
846 
847  memcpy (&x, p, sizeof (x));
848 #ifdef WORDS_BIGENDIAN
849  x = bswap16 (x);
850 #endif
851  return x;
852 }
853 
854 /** Reads 32 bits in little-endian order */
855 VLC_USED
856 static inline uint32_t GetDWLE (const void *p)
857 {
858  uint32_t x;
859 
860  memcpy (&x, p, sizeof (x));
861 #ifdef WORDS_BIGENDIAN
862  x = bswap32 (x);
863 #endif
864  return x;
865 }
866 
867 /** Reads 64 bits in little-endian order */
868 VLC_USED
869 static inline uint64_t GetQWLE (const void *p)
870 {
871  uint64_t x;
872 
873  memcpy (&x, p, sizeof (x));
874 #ifdef WORDS_BIGENDIAN
875  x = bswap64 (x);
876 #endif
877  return x;
878 }
879 
880 /** Writes 16 bits in network byte order */
881 static inline void SetWBE (void *p, uint16_t w)
882 {
883  w = hton16 (w);
884  memcpy (p, &w, sizeof (w));
885 }
886 
887 /** Writes 32 bits in network byte order */
888 static inline void SetDWBE (void *p, uint32_t dw)
889 {
890  dw = hton32 (dw);
891  memcpy (p, &dw, sizeof (dw));
892 }
893 
894 /** Writes 64 bits in network byte order */
895 static inline void SetQWBE (void *p, uint64_t qw)
896 {
897  qw = hton64 (qw);
898  memcpy (p, &qw, sizeof (qw));
899 }
900 
901 /** Writes 16 bits in little endian order */
902 static inline void SetWLE (void *p, uint16_t w)
903 {
904 #ifdef WORDS_BIGENDIAN
905  w = bswap16 (w);
906 #endif
907  memcpy (p, &w, sizeof (w));
908 }
909 
910 /** Writes 32 bits in little endian order */
911 static inline void SetDWLE (void *p, uint32_t dw)
912 {
913 #ifdef WORDS_BIGENDIAN
914  dw = bswap32 (dw);
915 #endif
916  memcpy (p, &dw, sizeof (dw));
917 }
918 
919 /** Writes 64 bits in little endian order */
920 static inline void SetQWLE (void *p, uint64_t qw)
921 {
922 #ifdef WORDS_BIGENDIAN
923  qw = bswap64 (qw);
924 #endif
925  memcpy (p, &qw, sizeof (qw));
926 }
927 
928 /* */
929 #define VLC_UNUSED(x) (void)(x)
930 
931 /* Stuff defined in src/extras/libc.c */
932 
933 #if defined(_WIN32)
934 /* several type definitions */
935 # if defined( __MINGW32__ )
936 # if !defined( _OFF_T_ )
937  typedef long long _off_t;
938  typedef _off_t off_t;
939 # define _OFF_T_
940 # else
941 # ifdef off_t
942 # undef off_t
943 # endif
944 # define off_t long long
945 # endif
946 # endif
947 
948 # ifndef O_NONBLOCK
949 # define O_NONBLOCK 0
950 # endif
951 
952 /* the mingw32 swab() and win32 _swab() prototypes expect a char* instead of a
953  const void* */
954 # define swab(a,b,c) swab((char*) (a), (char*) (b), (c))
955 
956 
957 # include <tchar.h>
958 #endif /* _WIN32 */
959 
960 typedef struct {
961  unsigned num, den;
963 
964 VLC_API bool vlc_ureduce( unsigned *, unsigned *, uint64_t, uint64_t, uint64_t );
965 
966 #define container_of(ptr, type, member) \
967  ((type *)(((char *)(ptr)) - offsetof(type, member)))
968 
970 static inline void *vlc_alloc(size_t count, size_t size)
971 {
972  return mul_overflow(count, size, &size) ? NULL : malloc(size);
973 }
974 
975 /*****************************************************************************
976  * I18n stuff
977  *****************************************************************************/
978 VLC_API char *vlc_gettext( const char *msgid ) VLC_FORMAT_ARG(1);
979 VLC_API char *vlc_ngettext( const char *s, const char *p, unsigned long n ) VLC_FORMAT_ARG(1) VLC_FORMAT_ARG(2);
980 
981 #define vlc_pgettext( ctx, id ) \
982  vlc_pgettext_aux( ctx "\004" id, id )
983 
985 static inline const char *vlc_pgettext_aux( const char *ctx, const char *id )
986 {
987  const char *tr = vlc_gettext( ctx );
988  return (tr == ctx) ? id : tr;
989 }
990 
991 /*****************************************************************************
992  * Loosy memory allocation functions. Do not use in new code.
993  *****************************************************************************/
994 static inline void *xmalloc(size_t len)
995 {
996  void *ptr = malloc(len);
997  if (unlikely(ptr == NULL && len > 0))
998  abort();
999  return ptr;
1000 }
1001 
1002 static inline void *xrealloc(void *ptr, size_t len)
1003 {
1004  void *nptr = realloc(ptr, len);
1005  if (unlikely(nptr == NULL && len > 0))
1006  abort();
1007  return nptr;
1008 }
1009 
1010 static inline void *xcalloc(size_t n, size_t size)
1011 {
1012  void *ptr = calloc(n, size);
1013  if (unlikely(ptr == NULL && (n > 0 || size > 0)))
1014  abort ();
1015  return ptr;
1016 }
1017 
1018 static inline char *xstrdup (const char *str)
1019 {
1020  char *ptr = strdup (str);
1021  if (unlikely(ptr == NULL))
1022  abort ();
1023  return ptr;
1024 }
1025 
1026 /*****************************************************************************
1027  * libvlc features
1028  *****************************************************************************/
1029 VLC_API const char * VLC_CompileBy( void ) VLC_USED;
1030 VLC_API const char * VLC_CompileHost( void ) VLC_USED;
1031 VLC_API const char * VLC_Compiler( void ) VLC_USED;
1032 
1033 /*****************************************************************************
1034  * Additional vlc stuff
1035  *****************************************************************************/
1036 #include "vlc_messages.h"
1037 #include "vlc_objects.h"
1038 #include "vlc_variables.h"
1039 #include "vlc_main.h"
1040 #include "vlc_configuration.h"
1041 
1042 #if defined( _WIN32 ) || defined( __OS2__ )
1043 # define DIR_SEP_CHAR '\\'
1044 # define DIR_SEP "\\"
1045 # define PATH_SEP_CHAR ';'
1046 # define PATH_SEP ";"
1047 #else
1048 # define DIR_SEP_CHAR '/'
1049 # define DIR_SEP "/"
1050 # define PATH_SEP_CHAR ':'
1051 # define PATH_SEP ":"
1052 #endif
1053 
1054 #define LICENSE_MSG \
1055  _("This program comes with NO WARRANTY, to the extent permitted by " \
1056  "law.\nYou may redistribute it under the terms of the GNU General " \
1057  "Public License;\nsee the file named COPYING for details.\n" \
1058  "Written by the VideoLAN team; see the AUTHORS file.\n")
1059 
1060 #endif /* !VLC_COMMON_H */
hton16
#define hton16(i)
Definition: vlc_common.h:788
demux_sys_t
struct demux_sys_t demux_sys_t
Definition: vlc_common.h:225
playlist_t
Structure containing information about the playlist.
Definition: vlc_playlist.h:151
picture_sys_t
struct picture_sys_t picture_sys_t
Definition: vlc_common.h:252
count
size_t count
Definition: core.c:461
umull_overflow
static bool umull_overflow(unsigned long a, unsigned long b, unsigned long *res)
Definition: vlc_common.h:724
mtime_t
vlc_tick_t mtime_t
Definition: vlc_common.h:153
config_category_t
Definition: vlc_configuration.h:41
uaddll_overflow
static bool uaddll_overflow(unsigned long long a, unsigned long long b, unsigned long long *res)
Definition: vlc_common.h:674
SetQWLE
static void SetQWLE(void *p, uint64_t qw)
Writes 64 bits in little endian order.
Definition: vlc_common.h:909
input_attachment_t
Definition: vlc_input.h:154
VLC_USED
#define VLC_USED
Definition: vlc_common.h:103
vlc_list_t
VLC list structure.
Definition: vlc_common.h:346
VLC_API
#define VLC_API
Definition: vlc_common.h:137
services_discovery_t
Main service discovery structure to build a SD module.
Definition: vlc_services_discovery.h:54
libvlc_int_t
Definition: vlc_main.h:33
playlist_item_t
playlist item / node
Definition: vlc_playlist.h:126
md5_s
Definition: vlc_md5.h:32
vlc_messages.h
sout_stream_t
Definition: vlc_sout.h:196
addon_entry_t
Definition: vlc_addons.h:71
input_item_t
Describes an input and is used to spawn input_thread_t objects.
Definition: vlc_input_item.h:58
vlc_config.h
vlc_tick_t
int64_t vlc_tick_t
High precision date or time interval.
Definition: vlc_common.h:152
hton32
#define hton32(i)
Definition: vlc_common.h:789
es_out_sys_t
Definition: es_out.c:127
sout_input_t
Definition: vlc_sout.h:162
bswap64
static uint64_t() bswap64(uint64_t x)
Byte swap (64 bits)
Definition: vlc_common.h:626
video_format_t
video format description
Definition: vlc_es.h:325
ntoh64
#define ntoh64(i)
Definition: vlc_common.h:794
uaddl_overflow
static bool uaddl_overflow(unsigned long a, unsigned long b, unsigned long *res)
Definition: vlc_common.h:663
seekpoint_t
Definition: vlc_input.h:48
info_category_t
Definition: vlc_input_item.h:48
vlc_common_members::libvlc
libvlc_int_t * libvlc
LibVLC instance.
Definition: vlc_common.h:447
xstrdup
static char * xstrdup(const char *str)
Definition: vlc_common.h:1005
demux_t
Definition: vlc_demux.h:43
decoder_t
Definition: vlc_codec.h:55
sout_packetizer_input_t
Definition: stream_output.h:34
input_stats_t
Definition: vlc_input_item.h:389
U64_AT
static uint64_t U64_AT(const void *p)
Reads 64 bits in network byte order.
Definition: vlc_common.h:818
vlc_viewpoint_t
Viewpoints.
Definition: vlc_viewpoint.h:44
block_fifo_t
Internal state for block queues.
Definition: fifo.c:37
vlc_threads.h
vod_sys_t
struct vod_sys_t vod_sys_t
Definition: vlc_common.h:313
decoder_sys_t
struct decoder_sys_t decoder_sys_t
Definition: vlc_common.h:281
bswap32
static uint32_t() bswap32(uint32_t x)
Byte swap (32 bits)
Definition: vlc_common.h:612
vlc_fourcc_t
uint32_t vlc_fourcc_t
The vlc_fourcc_t type.
Definition: vlc_common.h:163
sout_access_out_t
Stream output access_output.
Definition: vlc_sout.h:72
sout_access_out_sys_t
struct sout_access_out_sys_t sout_access_out_sys_t
Definition: vlc_common.h:268
audio_format_t
audio format description
Definition: vlc_es.h:82
picture_t
Video picture.
Definition: vlc_picture.h:68
U16_AT
static uint16_t U16_AT(const void *p)
Reads 16 bits in network byte order.
Definition: vlc_common.h:798
xml_sys_t
struct xml_sys_t xml_sys_t
Definition: vlc_common.h:307
VLC_FORMAT_ARG
#define VLC_FORMAT_ARG(x)
Definition: vlc_common.h:101
vlc_gettext
char * vlc_gettext(const char *msgid)
In-tree plugins share their gettext domain with LibVLC.
Definition: textdomain.c:89
SetQWBE
static void SetQWBE(void *p, uint64_t qw)
Writes 64 bits in network byte order.
Definition: vlc_common.h:884
filter_sys_t
struct filter_sys_t filter_sys_t
Definition: vlc_common.h:290
vlc_meta_t
Definition: meta.c:41
VLC_Compiler
const char * VLC_Compiler(void)
Definition: version.c:43
clip_uint8_vlc
static uint8_t clip_uint8_vlc(int32_t a)
Definition: vlc_common.h:507
decoder_synchro_t
struct decoder_synchro_t decoder_synchro_t
Definition: vlc_common.h:282
vlc_list_callback_t
int(* vlc_list_callback_t)(vlc_object_t *, char const *, int, vlc_value_t *, void *)
Definition: vlc_common.h:375
video_palette_t
Definition: vlc_es.h:44
vlc_common_members::parent
vlc_object_t * parent
Parent object.
Definition: vlc_common.h:454
audio_output
Audio output object.
Definition: vlc_aout.h:114
access_sys_t
Definition: access.c:41
es_out_t
Definition: vlc_es_out.h:111
vlc_error
const char * vlc_error(int)
Definition: error.c:36
SetDWBE
static void SetDWBE(void *p, uint32_t dw)
Writes 32 bits in network byte order.
Definition: vlc_common.h:877
GCD
static int64_t GCD(int64_t a, int64_t b)
Definition: vlc_common.h:494
encoder_sys_t
struct encoder_sys_t encoder_sys_t
Definition: vlc_common.h:286
vlc_list_t::i_type
int i_type
Definition: vlc_common.h:348
bswap16
static uint16_t() bswap16(uint16_t x)
Byte swap (16 bits)
Definition: vlc_common.h:605
config_chain_t
Definition: vlc_configuration.h:155
module_t
Internal module descriptor.
Definition: modules.h:79
filter_t
Structure describing a filter.
Definition: vlc_filter.h:65
sout_stream_sys_t
struct sout_stream_sys_t sout_stream_sys_t
Definition: vlc_common.h:274
es_format_t
Definition: vlc_es.h:580
vlm_t
Definition: vlm_internal.h:83
subpicture_t
Video subtitle.
Definition: vlc_subpicture.h:153
date_t
Definition: vlc_mtime.h:118
spu_t
Subpicture unit descriptor.
Definition: vlc_spu.h:47
subs_format_t
subtitles format description
Definition: vlc_es.h:511
subpicture_region_t
Video subtitle region.
Definition: vlc_subpicture.h:57
encoder_t
Definition: vlc_codec.h:211
SetDWLE
static void SetDWLE(void *p, uint32_t dw)
Writes 32 bits in little endian order.
Definition: vlc_common.h:900
umul_overflow
static bool umul_overflow(unsigned a, unsigned b, unsigned *res)
Definition: vlc_common.h:714
clz
static unsigned() clz(unsigned x)
Count leading zeroes.
Definition: vlc_common.h:515
SetWBE
static void SetWBE(void *p, uint16_t w)
Writes 16 bits in network byte order.
Definition: vlc_common.h:870
VLC_CompileBy
const char * VLC_CompileBy(void)
Definition: version.c:41
stream_t
stream_t definition
Definition: vlc_stream.h:46
SetWLE
static void SetWLE(void *p, uint16_t w)
Writes 16 bits in little endian order.
Definition: vlc_common.h:891
sout_mux_t
Muxer structure.
Definition: vlc_sout.h:120
services_discovery_sys_t
struct services_discovery_sys_t services_discovery_sys_t
Definition: vlc_common.h:207
es_out_id_t
Definition: es_out.c:78
vlc_configuration.h
xml_t
Definition: vlc_xml.h:36
vlc_rational_t
Definition: fourcc_gen.c:33
popcountll
static int() popcountll(unsigned long long x)
Bit weight of long long.
Definition: vlc_common.h:574
video_frame_format_t
video_format_t video_frame_format_t
Definition: vlc_common.h:250
xmalloc
static void * xmalloc(size_t len)
Definition: vlc_common.h:981
VLC_CompileHost
const char * VLC_CompileHost(void)
Definition: version.c:42
vlc_common_members
Common structure members.
Definition: vlc_common.h:418
vlc_url_t
Definition: vlc_url.h:145
vlc_object_t
The main vlc_object_t structure.
Definition: vlc_objects.h:39
vlc_pgettext_aux
static const char * vlc_pgettext_aux(const char *ctx, const char *id)
Definition: vlc_common.h:973
update_t
The update object.
Definition: update.h:156
module_config_t
Definition: vlc_configuration.h:60
iso639_lang_t
Definition: vlc_iso_lang.h:30
vlc_main.h
vlc_mtime.h
stream_sys_t
Definition: stream_fifo.c:35
strdup
char * strdup(const char *)
hton64
#define hton64(i)
Definition: vlc_common.h:790
vlc_list_t::i_count
int i_count
Definition: vlc_common.h:349
mul_overflow
#define mul_overflow(a, b, r)
Definition: vlc_common.h:747
image_handler_t
Definition: vlc_image.h:39
vlc_renderer_item_t
Definition: renderer_discovery.c:33
ntoh32
#define ntoh32(i)
Definition: vlc_common.h:793
VLC_MALLOC
#define VLC_MALLOC
Definition: vlc_common.h:102
xcalloc
static void * xcalloc(size_t n, size_t size)
Definition: vlc_common.h:997
popcount
static unsigned() popcount(unsigned x)
Bit weight.
Definition: vlc_common.h:557
xrealloc
static void * xrealloc(void *ptr, size_t len)
Definition: vlc_common.h:989
GetQWLE
static uint64_t GetQWLE(const void *p)
Reads 64 bits in little-endian order.
Definition: vlc_common.h:858
vlc_common_members::force
bool force
Module probe flag.
Definition: vlc_common.h:441
vlc_ngettext
char * vlc_ngettext(const char *s, const char *p, unsigned long n)
Definition: textdomain.c:98
xml_reader_t
Definition: vlc_xml.h:65
parity
static unsigned() parity(unsigned x)
Definition: vlc_common.h:591
unlikely
#define unlikely(p)
Definition: vlc_common.h:116
uadd_overflow
static bool uadd_overflow(unsigned a, unsigned b, unsigned *res)
Definition: vlc_common.h:653
info_t
Definition: vlc_input_item.h:42
vlc_ureduce
bool vlc_ureduce(unsigned *, unsigned *, uint64_t, uint64_t, uint64_t)
vlm_message_t
Definition: vlc_vlm.h:172
audio_sample_format_t
audio_format_t audio_sample_format_t
Definition: vlc_common.h:244
vod_media_t
struct vod_media_t vod_media_t
Definition: vlc_common.h:314
aout_sys_t
struct aout_sys_t aout_sys_t
Definition: vlc_common.h:243
vlc_common_members::header
char * header
Log messages header.
Definition: vlc_common.h:432
vod_t
Definition: vlc_vod.h:36
U32_AT
static uint32_t U32_AT(const void *p)
Reads 32 bits in network byte order.
Definition: vlc_common.h:808
vlc_fourcc_to_char
static void vlc_fourcc_to_char(vlc_fourcc_t fcc, char *psz_fourcc)
Translate a vlc_fourcc into its string representation.
Definition: vlc_common.h:188
vlc_variables.h
session_descriptor_t
Definition: sap.c:47
vlc_arrays.h
vout_thread_t
Video output thread descriptor.
Definition: vlc_vout.h:70
add_overflow
#define add_overflow(a, b, r)
Definition: vlc_common.h:686
input_thread_t
Main structure representing an input thread.
Definition: vlc_input.h:221
sout_mux_sys_t
struct sout_mux_sys_t sout_mux_sys_t
Definition: vlc_common.h:271
input_item_node_t
Definition: vlc_input_item.h:180
umulll_overflow
static bool umulll_overflow(unsigned long long a, unsigned long long b, unsigned long long *res)
Definition: vlc_common.h:735
vlc_alloc
static void * vlc_alloc(size_t count, size_t size)
Definition: vlc_common.h:959
vlc_value_t
VLC value structure.
Definition: vlc_common.h:331
sout_instance_t
Stream output instance (FIXME: should be private to src/ to avoid invalid unsynchronized access)
Definition: vlc_sout.h:48
block_t
Definition: vlc_block.h:111
vlc_common_members::object_type
const char * object_type
Object type name.
Definition: vlc_common.h:425
GetDWLE
static uint32_t GetDWLE(const void *p)
Reads 32 bits in little-endian order.
Definition: vlc_common.h:845
ctz
static unsigned() ctz(unsigned x)
Count trailing zeroes.
Definition: vlc_common.h:538
vlc_list_t::p_values
vlc_value_t * p_values
Definition: vlc_common.h:350
vlc_objects.h
xml_reader_sys_t
struct xml_reader_sys_t xml_reader_sys_t
Definition: vlc_common.h:309
vlc_renderer_discovery_t
Definition: vlc_renderer_discovery.h:164
ntoh16
#define ntoh16(i)
Definition: vlc_common.h:792
GetWLE
static uint16_t GetWLE(const void *p)
Reads 16 bits in little-endian order.
Definition: vlc_common.h:832
vlc_fourcc_t
uint32_t vlc_fourcc_t
Definition: fourcc_gen.c:32
p
#define p(t)
vlc_common_members::flags
int flags
Definition: vlc_common.h:434
vlc_callback_t
int(* vlc_callback_t)(vlc_object_t *, char const *, vlc_value_t, vlc_value_t, void *)
Definition: vlc_common.h:367