]> git.sesse.net Git - vlc/blob - include/common.h
. moved the playlist handling from input/input.c to interface/interface.c
[vlc] / include / 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: common.h,v 1.28 2001/02/08 07:24:25 sam Exp $
7  *
8  * Authors: Samuel Hocevar <sam@via.ecp.fr>
9  *          Vincent Seguin <seguin@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * required headers:
28  *  config.h
29  *****************************************************************************/
30
31 /*****************************************************************************
32  * Basic types definitions
33  *****************************************************************************/
34
35 #include "int_types.h"
36
37 typedef u8                  byte_t;
38
39 /* Boolean type */
40 #ifdef BOOLEAN_T_IN_SYS_TYPES_H
41 #   include <sys/types.h>
42 #else
43 typedef int                 boolean_t;
44 #endif
45 #ifdef SYS_GNU
46 #   define _MACH_I386_BOOLEAN_H_
47 #endif
48
49 /* ptrdiff_t definition */
50 #ifdef HAVE_STDDEF_H
51 #   include <stddef.h>
52 #else
53 #   include <malloc.h>
54 #   ifndef _PTRDIFF_T
55 #       define _PTRDIFF_T
56 /* Not portable in a 64-bit environment. */
57 typedef int                 ptrdiff_t;
58 #   endif
59 #endif
60
61 /* Counter for statistics and profiling */
62 typedef unsigned long       count_t;
63
64 /* DCT elements types */
65 #ifndef VDEC_DFT
66 typedef short dctelem_t;
67 #else
68 typedef int dctelem_t;
69 #endif
70
71 /*****************************************************************************
72  * Classes declaration
73  *****************************************************************************/
74
75 /* Plugins */
76 struct plugin_bank_s;
77 struct plugin_info_s;
78
79 typedef struct plugin_bank_s *          p_plugin_bank_t;
80 typedef struct plugin_info_s *          p_plugin_info_t;
81
82 /* Plugins */
83 struct playlist_s;
84 struct playlist_item_s;
85
86 typedef struct playlist_s *             p_playlist_t;
87 typedef struct playlist_item_s *        p_playlist_item_t;
88
89 /* Interface */
90 struct intf_thread_s;
91 struct intf_sys_s;
92 struct intf_console_s;
93 struct intf_msg_s;
94 struct intf_channel_s;
95
96 typedef struct intf_thread_s *          p_intf_thread_t;
97 typedef struct intf_sys_s *             p_intf_sys_t;
98 typedef struct intf_console_s *         p_intf_console_t;
99 typedef struct intf_msg_s *             p_intf_msg_t;
100 typedef struct intf_channel_s *         p_intf_channel_t;
101
102 /* Input */
103 struct input_thread_s;
104 struct input_vlan_s;
105 struct input_cfg_s;
106
107 typedef struct input_thread_s *         p_input_thread_t;
108 typedef struct input_vlan_s *           p_input_vlan_t;
109 typedef struct input_cfg_s *            p_input_cfg_t;
110
111 /* Audio */
112 struct aout_thread_s;
113 struct aout_sys_s;
114
115 typedef struct aout_thread_s *          p_aout_thread_t;
116 typedef struct aout_sys_s *             p_aout_sys_t;
117
118 /* Video */
119 struct vout_thread_s;
120 struct vout_font_s;
121 struct vout_sys_s;
122 struct vdec_thread_s;
123 struct vpar_thread_s;
124 struct video_parser_s;
125
126 typedef struct vout_thread_s *          p_vout_thread_t;
127 typedef struct vout_font_s *            p_vout_font_t;
128 typedef struct vout_sys_s *             p_vout_sys_t;
129 typedef struct vdec_thread_s *          p_vdec_thread_t;
130 typedef struct vpar_thread_s *          p_vpar_thread_t;
131 typedef struct video_parser_s *         p_video_parser_t;
132
133 /* Misc */
134 struct macroblock_s;
135 struct data_packet_s;
136
137 /*****************************************************************************
138  * Macros and inline functions
139  *****************************************************************************/
140
141 #ifdef NTOHL_IN_SYS_PARAM_H
142 #   include <sys/param.h>
143 #else
144 #   include <netinet/in.h>
145 #endif
146
147 /* CEIL: division with round to nearest greater integer */
148 #define CEIL(n, d)  ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
149
150 /* PAD: PAD(n, d) = CEIL(n ,d) * d */
151 #define PAD(n, d)   ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
152
153 /* MAX and MIN: self explanatory */
154 #ifndef MAX
155 #define MAX(a, b)   ( ((a) > (b)) ? (a) : (b) )
156 #endif
157 #ifndef MIN
158 #define MIN(a, b)   ( ((a) < (b)) ? (a) : (b) )
159 #endif
160
161 /* MSB (big endian)/LSB (little endian) conversions - network order is always
162  * MSB, and should be used for both network communications and files. Note that
163  * byte orders other than little and big endians are not supported, but only
164  * the VAX seems to have such exotic properties - note that these 'functions'
165  * needs <netinet/in.h> or the local equivalent. */
166 /* FIXME: hton64 should be declared as an extern inline function to avoid
167  * border effects (see byteorder.h) */
168 #if WORDS_BIGENDIAN
169 #define hton16      htons
170 #define hton32      htonl
171 #define hton64(i)   ( i )
172 #define ntoh16      ntohs
173 #define ntoh32      ntohl
174 #define ntoh64(i)   ( i )
175 #else
176 #define hton16      htons
177 #define hton32      htonl
178 #define hton64(i)   ( ((u64)(htonl((i) & 0xffffffff)) << 32) | htonl(((i) >> 32) & 0xffffffff ) )
179 #define ntoh16      ntohs
180 #define ntoh32      ntohl
181 #define ntoh64      hton64
182 #endif
183
184 /* Macros with automatic casts */
185 #define U64_AT(p)   ( ntoh64 ( *( (u64 *)(p) ) ) )
186 #define U32_AT(p)   ( ntoh32 ( *( (u32 *)(p) ) ) )
187 #define U16_AT(p)   ( ntoh16 ( *( (u16 *)(p) ) ) )
188