vout: vout_ChangeRate: remove display assert
[vlc.git] / include / vlc_plugin.h
blob2ddc6cb0b1667b763f81b3947ce7aa956f279f5c
1 /*****************************************************************************
2 * vlc_plugin.h : Macros used from within a module.
3 *****************************************************************************
4 * Copyright (C) 2001-2006 VLC authors and VideoLAN
5 * Copyright © 2007-2009 Rémi Denis-Courmont
7 * Authors: Samuel Hocevar <sam@zoy.org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef LIBVLC_MODULES_MACROS_H
25 # define LIBVLC_MODULES_MACROS_H 1
27 /**
28 * \file
29 * This file implements plugin (module) macros used to define a vlc module.
32 enum vlc_module_properties
34 VLC_MODULE_CREATE,
35 VLC_CONFIG_CREATE,
37 /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
38 * Append new items at the end ONLY. */
39 VLC_MODULE_CPU_REQUIREMENT=0x100,
40 VLC_MODULE_SHORTCUT,
41 VLC_MODULE_CAPABILITY,
42 VLC_MODULE_SCORE,
43 VLC_MODULE_CB_OPEN,
44 VLC_MODULE_CB_CLOSE,
45 VLC_MODULE_NO_UNLOAD,
46 VLC_MODULE_NAME,
47 VLC_MODULE_SHORTNAME,
48 VLC_MODULE_DESCRIPTION,
49 VLC_MODULE_HELP,
50 VLC_MODULE_TEXTDOMAIN,
51 /* Insert new VLC_MODULE_* here */
53 /* DO NOT EVER REMOVE, INSERT OR REPLACE ANY ITEM! It would break the ABI!
54 * Append new items at the end ONLY. */
55 VLC_CONFIG_NAME=0x1000,
56 /* command line name (args=const char *) */
58 VLC_CONFIG_VALUE,
59 /* actual value (args=int64_t/double/const char *) */
61 VLC_CONFIG_RANGE,
62 /* minimum value (args=int64_t/double/const char * twice) */
64 VLC_CONFIG_ADVANCED_RESERVED,
65 /* reserved - do not use */
67 VLC_CONFIG_VOLATILE,
68 /* don't write variable to storage (args=none) */
70 VLC_CONFIG_PERSISTENT_OBSOLETE,
71 /* unused (ignored) */
73 VLC_CONFIG_PRIVATE,
74 /* hide from user (args=none) */
76 VLC_CONFIG_REMOVED,
77 /* tag as no longer supported (args=none) */
79 VLC_CONFIG_CAPABILITY,
80 /* capability for a module or list thereof (args=const char*) */
82 VLC_CONFIG_SHORTCUT,
83 /* one-character (short) command line option name (args=char) */
85 VLC_CONFIG_OLDNAME_OBSOLETE,
86 /* unused (ignored) */
88 VLC_CONFIG_SAFE,
89 /* tag as modifiable by untrusted input item "sources" (args=none) */
91 VLC_CONFIG_DESC,
92 /* description (args=const char *, const char *, const char *) */
94 VLC_CONFIG_LIST_OBSOLETE,
95 /* unused (ignored) */
97 VLC_CONFIG_ADD_ACTION_OBSOLETE,
98 /* unused (ignored) */
100 VLC_CONFIG_LIST,
101 /* list of suggested values
102 * (args=size_t, const <type> *, const char *const *) */
104 VLC_CONFIG_LIST_CB_OBSOLETE,
105 /* unused (ignored) */
107 /* Insert new VLC_CONFIG_* here */
110 /* Configuration hint types */
111 #define CONFIG_HINT_CATEGORY 0x02 /* Start of new category */
112 #define CONFIG_HINT_USAGE 0x05 /* Usage information */
114 #define CONFIG_CATEGORY 0x06 /* Set category */
115 #define CONFIG_SUBCATEGORY 0x07 /* Set subcategory */
116 #define CONFIG_SECTION 0x08 /* Start of new section */
118 /* Configuration item types */
119 #define CONFIG_ITEM_FLOAT 0x20 /* Float option */
120 #define CONFIG_ITEM_INTEGER 0x40 /* Integer option */
121 #define CONFIG_ITEM_RGB 0x41 /* RGB color option */
122 #define CONFIG_ITEM_BOOL 0x60 /* Bool option */
123 #define CONFIG_ITEM_STRING 0x80 /* String option */
124 #define CONFIG_ITEM_PASSWORD 0x81 /* Password option (*) */
125 #define CONFIG_ITEM_KEY 0x82 /* Hot key option */
126 #define CONFIG_ITEM_MODULE 0x84 /* Module option */
127 #define CONFIG_ITEM_MODULE_CAT 0x85 /* Module option */
128 #define CONFIG_ITEM_MODULE_LIST 0x86 /* Module option */
129 #define CONFIG_ITEM_MODULE_LIST_CAT 0x87 /* Module option */
130 #define CONFIG_ITEM_LOADFILE 0x8C /* Read file option */
131 #define CONFIG_ITEM_SAVEFILE 0x8D /* Written file option */
132 #define CONFIG_ITEM_DIRECTORY 0x8E /* Directory option */
133 #define CONFIG_ITEM_FONT 0x8F /* Font option */
135 #define CONFIG_ITEM(x) (((x) & ~0xF) != 0)
137 /* Categories and subcategories */
138 #define CAT_INTERFACE 1
139 #define SUBCAT_INTERFACE_GENERAL 101
140 #define SUBCAT_INTERFACE_MAIN 102
141 #define SUBCAT_INTERFACE_CONTROL 103
142 #define SUBCAT_INTERFACE_HOTKEYS 104
144 #define CAT_AUDIO 2
145 #define SUBCAT_AUDIO_GENERAL 201
146 #define SUBCAT_AUDIO_AOUT 202
147 #define SUBCAT_AUDIO_AFILTER 203
148 #define SUBCAT_AUDIO_VISUAL 204
149 #define SUBCAT_AUDIO_MISC 205
150 #define SUBCAT_AUDIO_RESAMPLER 206
152 #define CAT_VIDEO 3
153 #define SUBCAT_VIDEO_GENERAL 301
154 #define SUBCAT_VIDEO_VOUT 302
155 #define SUBCAT_VIDEO_VFILTER 303
156 #define SUBCAT_VIDEO_SUBPIC 305
157 #define SUBCAT_VIDEO_SPLITTER 306
159 #define CAT_INPUT 4
160 #define SUBCAT_INPUT_GENERAL 401
161 #define SUBCAT_INPUT_ACCESS 402
162 #define SUBCAT_INPUT_DEMUX 403
163 #define SUBCAT_INPUT_VCODEC 404
164 #define SUBCAT_INPUT_ACODEC 405
165 #define SUBCAT_INPUT_SCODEC 406
166 #define SUBCAT_INPUT_STREAM_FILTER 407
168 #define CAT_SOUT 5
169 #define SUBCAT_SOUT_GENERAL 501
170 #define SUBCAT_SOUT_STREAM 502
171 #define SUBCAT_SOUT_MUX 503
172 #define SUBCAT_SOUT_ACO 504
173 #define SUBCAT_SOUT_PACKETIZER 505
174 #define SUBCAT_SOUT_VOD 507
175 #define SUBCAT_SOUT_RENDERER 508
177 #define CAT_ADVANCED 6
178 #define SUBCAT_ADVANCED_MISC 602
179 #define SUBCAT_ADVANCED_NETWORK 603
181 #define CAT_PLAYLIST 7
182 #define SUBCAT_PLAYLIST_GENERAL 701
183 #define SUBCAT_PLAYLIST_SD 702
184 #define SUBCAT_PLAYLIST_EXPORT 703
188 * Current plugin ABI version
190 #define VLC_API_VERSION_STRING "4.0.4"
192 /*****************************************************************************
193 * Add a few defines. You do not want to read this section. Really.
194 *****************************************************************************/
196 /* Explanation:
198 * if linking a module statically, we will need:
199 * #define MODULE_FUNC( zog ) module_foo_zog
201 * this can't easily be done with the C preprocessor, thus a few ugly hacks.
204 /* I need to do _this_ to change « foo bar » to « module_foo_bar » ! */
205 #define CONCATENATE( y, z ) CRUDE_HACK( y, z )
206 #define CRUDE_HACK( y, z ) y##__##z
208 /* If the module is built-in, then we need to define foo_InitModule instead
209 * of InitModule. Same for Activate- and DeactivateModule. */
210 #ifdef __PLUGIN__
211 # define VLC_SYMBOL(symbol) symbol
212 # define VLC_MODULE_NAME_HIDDEN_SYMBOL \
213 const char vlc_module_name[] = MODULE_STRING;
214 #else
215 # define VLC_SYMBOL(symbol) CONCATENATE(symbol, MODULE_NAME)
216 # define VLC_MODULE_NAME_HIDDEN_SYMBOL
217 #endif
219 #define CDECL_SYMBOL
220 #if defined (__PLUGIN__)
221 # if defined (_WIN32)
222 # define DLL_SYMBOL __declspec(dllexport)
223 # undef CDECL_SYMBOL
224 # define CDECL_SYMBOL __cdecl
225 # elif defined (__GNUC__)
226 # define DLL_SYMBOL __attribute__((visibility("default")))
227 # else
228 # define DLL_SYMBOL
229 # endif
230 #else
231 # define DLL_SYMBOL
232 #endif
234 #if defined( __cplusplus )
235 # define EXTERN_SYMBOL extern "C"
236 #else
237 # define EXTERN_SYMBOL
238 #endif
240 EXTERN_SYMBOL typedef int (*vlc_set_cb) (void *, void *, int, ...);
242 #define vlc_plugin_set(...) vlc_set (opaque, NULL, __VA_ARGS__)
243 #define vlc_module_set(...) vlc_set (opaque, module, __VA_ARGS__)
244 #define vlc_config_set(...) vlc_set (opaque, config, __VA_ARGS__)
246 EXTERN_SYMBOL DLL_SYMBOL
247 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry)(vlc_set_cb, void *);
248 EXTERN_SYMBOL DLL_SYMBOL
249 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_int_enum)(const char *name,
250 int64_t **values, char ***descs);
251 EXTERN_SYMBOL DLL_SYMBOL
252 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_str_enum)(const char *name,
253 char ***values, char ***descs);
256 * InitModule: this function is called once and only once, when the module
257 * is looked at for the first time. We get the useful data from it, for
258 * instance the module name, its shortcuts, its capabilities... we also create
259 * a copy of its config because the module can be unloaded at any time.
261 #define vlc_module_begin() \
262 EXTERN_SYMBOL DLL_SYMBOL \
263 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry)(vlc_set_cb vlc_set, void *opaque) \
265 module_t *module; \
266 module_config_t *config = NULL; \
267 if (vlc_plugin_set (VLC_MODULE_CREATE, &module)) \
268 goto error; \
269 if (vlc_module_set (VLC_MODULE_NAME, (MODULE_STRING))) \
270 goto error;
272 #define vlc_module_end() \
273 (void) config; \
274 return 0; \
275 error: \
276 return -1; \
278 VLC_MODULE_NAME_HIDDEN_SYMBOL \
279 VLC_METADATA_EXPORTS
281 #define add_submodule( ) \
282 if (vlc_plugin_set (VLC_MODULE_CREATE, &module)) \
283 goto error;
285 #define add_shortcut( ... ) \
287 const char *shortcuts[] = { __VA_ARGS__ }; \
288 if (vlc_module_set (VLC_MODULE_SHORTCUT, \
289 sizeof(shortcuts)/sizeof(shortcuts[0]), shortcuts)) \
290 goto error; \
293 #define set_shortname( shortname ) \
294 if (vlc_module_set (VLC_MODULE_SHORTNAME, (const char *)(shortname))) \
295 goto error;
297 #define set_description( desc ) \
298 if (vlc_module_set (VLC_MODULE_DESCRIPTION, (const char *)(desc))) \
299 goto error;
301 #define set_help( help ) \
302 if (vlc_module_set (VLC_MODULE_HELP, (const char *)(help))) \
303 goto error;
305 #define set_capability( cap, score ) \
306 if (vlc_module_set (VLC_MODULE_CAPABILITY, (const char *)(cap)) \
307 || vlc_module_set (VLC_MODULE_SCORE, (int)(score))) \
308 goto error;
310 #define set_callback(activate) \
311 if (vlc_module_set(VLC_MODULE_CB_OPEN, #activate, (void *)(activate))) \
312 goto error;
314 #define set_callbacks( activate, deactivate ) \
315 set_callback(activate) \
316 if (vlc_module_set(VLC_MODULE_CB_CLOSE, #deactivate, \
317 (void (*)(vlc_object_t *)){ deactivate })) \
318 goto error;
320 #define cannot_unload_broken_library( ) \
321 if (vlc_module_set (VLC_MODULE_NO_UNLOAD)) \
322 goto error;
324 #define set_text_domain( dom ) \
325 if (vlc_plugin_set (VLC_MODULE_TEXTDOMAIN, (dom))) \
326 goto error;
328 /*****************************************************************************
329 * Macros used to build the configuration structure.
331 * Note that internally we support only 3 types of config data: int, float
332 * and string.
333 * The other types declared here just map to one of these 3 basic types but
334 * have the advantage of also providing very good hints to a configuration
335 * interface so as to make it more user friendly.
336 * The configuration structure also includes category hints. These hints can
337 * provide a configuration interface with some very useful data and again
338 * allow for a more user friendly interface.
339 *****************************************************************************/
341 #define add_type_inner( type ) \
342 vlc_plugin_set (VLC_CONFIG_CREATE, (type), &config);
344 #define add_typedesc_inner( type, text, longtext ) \
345 add_type_inner( type ) \
346 vlc_config_set (VLC_CONFIG_DESC, \
347 (const char *)(text), (const char *)(longtext));
349 #define add_typename_inner(type, name, text, longtext) \
350 add_typedesc_inner(type, text, longtext) \
351 vlc_config_set (VLC_CONFIG_NAME, (const char *)(name));
353 #define add_string_inner(type, name, text, longtext, v) \
354 add_typename_inner(type, name, text, longtext) \
355 vlc_config_set (VLC_CONFIG_VALUE, (const char *)(v));
357 #define add_int_inner(type, name, text, longtext, v) \
358 add_typename_inner(type, name, text, longtext) \
359 vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(v));
362 #define set_category( i_id ) \
363 add_type_inner( CONFIG_CATEGORY ) \
364 vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(i_id));
366 #define set_subcategory( i_id ) \
367 add_type_inner( CONFIG_SUBCATEGORY ) \
368 vlc_config_set (VLC_CONFIG_VALUE, (int64_t)(i_id));
370 #define set_section( text, longtext ) \
371 add_typedesc_inner( CONFIG_SECTION, text, longtext )
373 #define add_category_hint(text, longtext) \
374 add_typedesc_inner( CONFIG_HINT_CATEGORY, text, longtext )
376 #define add_usage_hint( text ) \
377 add_typedesc_inner( CONFIG_HINT_USAGE, text, NULL )
379 #define add_string( name, value, text, longtext, advc ) \
380 add_string_inner(CONFIG_ITEM_STRING, name, text, longtext, value)
382 #define add_password(name, value, text, longtext) \
383 add_string_inner(CONFIG_ITEM_PASSWORD, name, text, longtext, value)
385 #define add_loadfile(name, value, text, longtext) \
386 add_string_inner(CONFIG_ITEM_LOADFILE, name, text, longtext, value)
388 #define add_savefile(name, value, text, longtext) \
389 add_string_inner(CONFIG_ITEM_SAVEFILE, name, text, longtext, value)
391 #define add_directory(name, value, text, longtext) \
392 add_string_inner(CONFIG_ITEM_DIRECTORY, name, text, longtext, value)
394 #define add_font(name, value, text, longtext) \
395 add_string_inner(CONFIG_ITEM_FONT, name, text, longtext, value)
397 #define add_module(name, psz_caps, value, text, longtext) \
398 add_string_inner(CONFIG_ITEM_MODULE, name, text, longtext, value) \
399 vlc_config_set (VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
401 #define add_module_list(name, psz_caps, value, text, longtext) \
402 add_string_inner(CONFIG_ITEM_MODULE_LIST, name, text, longtext, value) \
403 vlc_config_set (VLC_CONFIG_CAPABILITY, (const char *)(psz_caps));
405 #ifndef __PLUGIN__
406 #define add_module_cat(name, i_subcategory, value, text, longtext) \
407 add_string_inner(CONFIG_ITEM_MODULE_CAT, name, text, longtext, value) \
408 change_integer_range (i_subcategory /* gruik */, 0);
410 #define add_module_list_cat(name, i_subcategory, value, text, longtext) \
411 add_string_inner(CONFIG_ITEM_MODULE_LIST_CAT, name, text, longtext, \
412 value) \
413 change_integer_range (i_subcategory /* gruik */, 0);
414 #endif
416 #define add_integer( name, value, text, longtext, advc ) \
417 add_int_inner(CONFIG_ITEM_INTEGER, name, text, longtext, value)
419 #define add_rgb(name, value, text, longtext) \
420 add_int_inner(CONFIG_ITEM_RGB, name, text, longtext, value) \
421 change_integer_range( 0, 0xFFFFFF )
423 #define add_key(name, value, text, longtext) \
424 add_string_inner(CONFIG_ITEM_KEY, "global-" name, text, longtext, \
425 KEY_UNSET) \
426 add_string_inner(CONFIG_ITEM_KEY, name, text, longtext, value)
428 #define add_integer_with_range( name, value, i_min, i_max, text, longtext, advc ) \
429 add_integer( name, value, text, longtext, advc ) \
430 change_integer_range( i_min, i_max )
432 #define add_float( name, v, text, longtext, advc ) \
433 add_typename_inner(CONFIG_ITEM_FLOAT, name, text, longtext) \
434 vlc_config_set (VLC_CONFIG_VALUE, (double)(v));
436 #define add_float_with_range( name, value, f_min, f_max, text, longtext, advc ) \
437 add_float( name, value, text, longtext, advc ) \
438 change_float_range( f_min, f_max )
440 #define add_bool( name, v, text, longtext, advc ) \
441 add_typename_inner(CONFIG_ITEM_BOOL, name, text, longtext) \
442 if (v) vlc_config_set (VLC_CONFIG_VALUE, (int64_t)true);
444 /* For removed option */
445 #define add_obsolete_inner( name, type ) \
446 add_type_inner( type ) \
447 vlc_config_set (VLC_CONFIG_NAME, (const char *)(name)); \
448 vlc_config_set (VLC_CONFIG_REMOVED);
450 #define add_obsolete_bool( name ) \
451 add_obsolete_inner( name, CONFIG_ITEM_BOOL )
453 #define add_obsolete_integer( name ) \
454 add_obsolete_inner( name, CONFIG_ITEM_INTEGER )
456 #define add_obsolete_float( name ) \
457 add_obsolete_inner( name, CONFIG_ITEM_FLOAT )
459 #define add_obsolete_string( name ) \
460 add_obsolete_inner( name, CONFIG_ITEM_STRING )
462 /* Modifier macros for the config options (used for fine tuning) */
464 #define change_short( ch ) \
465 vlc_config_set (VLC_CONFIG_SHORTCUT, (int)(ch));
467 #define change_string_list( list, list_text ) \
468 vlc_config_set (VLC_CONFIG_LIST, \
469 (size_t)(sizeof (list) / sizeof (char *)), \
470 (const char *const *)(list), \
471 (const char *const *)(list_text));
473 #define change_integer_list( list, list_text ) \
474 vlc_config_set (VLC_CONFIG_LIST, \
475 (size_t)(sizeof (list) / sizeof (int)), \
476 (const int *)(list), \
477 (const char *const *)(list_text));
479 #define change_integer_range( minv, maxv ) \
480 vlc_config_set (VLC_CONFIG_RANGE, (int64_t)(minv), (int64_t)(maxv));
482 #define change_float_range( minv, maxv ) \
483 vlc_config_set (VLC_CONFIG_RANGE, (double)(minv), (double)(maxv));
485 /* For options that are saved but hidden from the preferences panel */
486 #define change_private() \
487 vlc_config_set (VLC_CONFIG_PRIVATE);
489 /* For options that cannot be saved in the configuration */
490 #define change_volatile() \
491 change_private() \
492 vlc_config_set (VLC_CONFIG_VOLATILE);
494 #define change_safe() \
495 vlc_config_set (VLC_CONFIG_SAFE);
497 /* Configuration item choice enumerators */
498 #define VLC_CONFIG_INTEGER_ENUM(cb) \
499 EXTERN_SYMBOL DLL_SYMBOL \
500 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_int_enum)(const char *name, \
501 int64_t **values, char ***descs) \
503 return (cb)(name, values, descs); \
506 #define VLC_CONFIG_STRING_ENUM(cb) \
507 EXTERN_SYMBOL DLL_SYMBOL \
508 int CDECL_SYMBOL VLC_SYMBOL(vlc_entry_cfg_str_enum)(const char *name, \
509 char ***values, char ***descs) \
511 return (cb)(name, values, descs); \
514 /* Meta data plugin exports */
515 #define VLC_META_EXPORT( name, value ) \
516 EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
517 VLC_SYMBOL(vlc_entry_ ## name)(void); \
518 EXTERN_SYMBOL DLL_SYMBOL const char * CDECL_SYMBOL \
519 VLC_SYMBOL(vlc_entry_ ## name)(void) \
521 return value; \
524 #define VLC_API_VERSION_EXPORT \
525 VLC_META_EXPORT(api_version, VLC_API_VERSION_STRING)
527 #define VLC_COPYRIGHT_VIDEOLAN \
528 "\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x43\x29\x20\x74\x68" \
529 "\x65\x20\x56\x69\x64\x65\x6f\x4c\x41\x4e\x20\x56\x4c\x43\x20\x6d" \
530 "\x65\x64\x69\x61\x20\x70\x6c\x61\x79\x65\x72\x20\x64\x65\x76\x65" \
531 "\x6c\x6f\x70\x65\x72\x73"
532 #define VLC_LICENSE_LGPL_2_1_PLUS \
533 "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
534 "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
535 "\x47\x4e\x55\x20\x4c\x65\x73\x73\x65\x72\x20\x47\x65\x6e\x65\x72" \
536 "\x61\x6c\x20\x50\x75\x62\x6c\x69\x63\x20\x4c\x69\x63\x65\x6e\x73" \
537 "\x65\x2c\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x32\x2e\x31\x20\x6f" \
538 "\x72\x20\x6c\x61\x74\x65\x72\x2e"
539 #define VLC_LICENSE_GPL_2_PLUS \
540 "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
541 "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
542 "\x47\x4e\x55\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x50\x75\x62\x6c" \
543 "\x69\x63\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x76\x65\x72\x73" \
544 "\x69\x6f\x6e\x20\x32\x20\x6f\x72\x20\x6c\x61\x74\x65\x72\x2e"
545 #if defined (__LIBVLC__)
546 # define VLC_MODULE_COPYRIGHT VLC_COPYRIGHT_VIDEOLAN
547 # ifndef VLC_MODULE_LICENSE
548 # define VLC_MODULE_LICENSE VLC_LICENSE_LGPL_2_1_PLUS
549 # endif
550 #endif
552 #ifdef VLC_MODULE_COPYRIGHT
553 # define VLC_COPYRIGHT_EXPORT VLC_META_EXPORT(copyright, VLC_MODULE_COPYRIGHT)
554 #else
555 # define VLC_COPYRIGHT_EXPORT
556 #endif
557 #ifdef VLC_MODULE_LICENSE
558 # define VLC_LICENSE_EXPORT VLC_META_EXPORT(license, VLC_MODULE_LICENSE)
559 #else
560 # define VLC_LICENSE_EXPORT
561 #endif
563 #define VLC_METADATA_EXPORTS \
564 VLC_API_VERSION_EXPORT \
565 VLC_COPYRIGHT_EXPORT \
566 VLC_LICENSE_EXPORT
568 #endif