]> git.sesse.net Git - vlc/commitdiff
vlc_plugin: fix non-LGPL plugins meta infos
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 21 Mar 2015 12:15:22 +0000 (14:15 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 21 Mar 2015 12:18:20 +0000 (14:18 +0200)
45 files changed:
include/vlc_plugin.h
modules/access/dshow/dshow.cpp
modules/access/rtsp/access.c
modules/audio_filter/channel_mixer/dolby.c
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/channel_mixer/mono.c
modules/audio_filter/converter/dtstospdif.c
modules/codec/dts.c
modules/codec/t140.c
modules/codec/x264.c
modules/codec/x265.c
modules/control/dbus/dbus.c
modules/control/dummy.c
modules/control/gestures.c
modules/control/globalhotkeys/win32.c
modules/control/globalhotkeys/xcb.c
modules/control/hotkeys.c
modules/control/lirc.c
modules/control/motion.c
modules/control/netsync.c
modules/control/ntservice.c
modules/control/rc.c
modules/control/win_msg.c
modules/demux/mpc.c
modules/demux/real.c
modules/gui/macosx/macosx.m
modules/gui/ncurses.c
modules/gui/skins2/src/skin_main.cpp
modules/logger/file.c
modules/logger/syslog.c
modules/misc/audioscrobbler.c
modules/misc/logger.c
modules/misc/playlist/export.c
modules/misc/rtsp.c
modules/misc/stats.c
modules/notify/growl.m
modules/notify/notify.c
modules/services_discovery/bonjour.c
modules/services_discovery/mediadirs.c
modules/services_discovery/mtp.c
modules/services_discovery/podcast.c
modules/services_discovery/sap.c
modules/stream_out/cycle.c
modules/stream_out/rtp.c
modules/video_filter/rotate.c

index 2fba949f36a39ef7268ce79f1e6de5c283f7b962..8d272849a035dced0eb4df91d3ad0d6652dc7bfa 100644 (file)
@@ -521,6 +521,12 @@ VLC_METADATA_EXPORTS
     "\x61\x6c\x20\x50\x75\x62\x6c\x69\x63\x20\x4c\x69\x63\x65\x6e\x73" \
     "\x65\x2c\x20\x76\x65\x72\x73\x69\x6f\x6e\x20\x32\x2e\x31\x20\x6f" \
     "\x72\x20\x6c\x61\x74\x65\x72\x2e"
+#define VLC_LICENSE_GPL_2_PLUS \
+    "\x4c\x69\x63\x65\x6e\x73\x65\x64\x20\x75\x6e\x64\x65\x72\x20\x74" \
+    "\x68\x65\x20\x74\x65\x72\x6d\x73\x20\x6f\x66\x20\x74\x68\x65\x20" \
+    "\x47\x4e\x55\x20\x47\x65\x6e\x65\x72\x61\x6c\x20\x50\x75\x62\x6c" \
+    "\x69\x63\x20\x4c\x69\x63\x65\x6e\x73\x65\x2c\x20\x76\x65\x72\x73" \
+    "\x69\x6f\x6e\x20\x32\x20\x6f\x72\x20\x6c\x61\x74\x65\x72\x2e"
 #if defined (__LIBVLC__)
 # define VLC_MODULE_COPYRIGHT VLC_COPYRIGHT_VIDEOLAN
 # ifndef VLC_MODULE_LICENSE
index cbb4fe6c5174bffffb1706adeb7d94bda4cd7bfd..ac98a8fd85cccf5dcc87c816f8d5be146eabe8dd 100644 (file)
@@ -38,6 +38,7 @@
 #include <string>
 #include <assert.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_access.h>
index dd786bec42a4e21d43ee21713150b5bed5bf7d3b..3a05be833a05865d88e340c03b8cb4a4e450eb8f 100644 (file)
@@ -28,6 +28,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_access.h>
index 60819f6a3d2afb477b637dc8ea62878fec57fa9f..344d961cc71d86706fe53925cb1a553570829980 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
index 43c603273082ea1771648d676f3595246c07ef71..306264d60305f50a70a4a609101b602a2a0f1234 100644 (file)
@@ -32,6 +32,7 @@
 
 #include <math.h>                                        /* sqrt */
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
index 0bb71ccd33ff7881cdb70dc638588c54adea0fd6..3dc29929c72a6115b08f55715ddbd0bedf46a17b 100644 (file)
@@ -31,6 +31,7 @@
 #include <math.h>                                        /* sqrt */
 #include <stdint.h>                                         /* int16_t .. */
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_block.h>
index 88384c8e2329f96f50d9e69d75917b3d553963a3..99c57bdd2c1f62bf350bff9a4861007a0c5d4b39 100644 (file)
@@ -33,6 +33,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index 5d777d4f01eb29dd47e0d4fb5693d7e52e9d49f3..991412c679aa7503a7e05f754eb720c3fd2c5f6b 100644 (file)
@@ -31,6 +31,7 @@
 #endif
 #include <assert.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_codec.h>
index babbd47d440def485ce81aee3ea5e16933e0ca24..feba0fe84de2d3fbeef638f5d2f8e5865c102dfe 100644 (file)
@@ -23,6 +23,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_codec.h>
index cb574a49faff55d2b8a6f1ea25ed25527807512b..68df693b7a7904076ff6d6117b4539b7762cb17d 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index ff28059ad056f7ae47bedae7293327e2d5cce092..2fac637878070d7257d8c5e8c630038b5ebcecc4 100644 (file)
@@ -27,6 +27,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_threads.h>
index 62ec1705e78bf9e1b8f42e45ac2d697c63d618d3..0950548d3eb9b5202d3154350927d4f67983ef0b 100644 (file)
@@ -53,6 +53,7 @@
 #include "dbus_tracklist.h"
 #include "dbus_introspect.h"
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index e541698c5a4ed4670b67444aabf34f2d67eea26e..9c93727a150fd0138648e152d2e83466be3e4871 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index a2fe30bfd11928c68594713c03d18751d71b29d2..c53202d8d5b9da18ed75b955b358b19aa3bd8656 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index f80510ed82305183afea465d7ce16f73f68e8066..a4508f6e25bbdb2b82faa5b9af9808bedd213605 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <ctype.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index c6a43de7baf8ee0a305beb2052163a92b57c9b73..98dc58b0fa0d5619185e328bd3785be83c0f319d 100644 (file)
@@ -23,6 +23,7 @@
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 77843a3c7bc1431e62a528790fd09f681d8cc17f..49b9c4d8b1e4ea2c78616cf1896c667ea25d3149 100644 (file)
@@ -30,6 +30,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 94841071398aea3b5dbdcd66589bfad41938f37c..52c1dfe60b65513fabfe80e90c5913a6465dee63 100644 (file)
@@ -32,6 +32,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index c2774203bdcece3a789a803553170136e152ad57..6c2144b5c967ea3f767c4befb1b99ec3d7353865 100644 (file)
@@ -33,6 +33,7 @@
 #include <assert.h>
 #include <unistd.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 05b18b291ff810790ad8bc350a31507ad3bd1f02..1226e2cbab6ece30a61888edc8b9815bbb7b2d06 100644 (file)
@@ -30,6 +30,7 @@
 #endif
 #include <assert.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 3eda3ecdc2f7a8ba134e8eb34c5020a6b248fa89..bef067157220ac201b3774b8ee81e6c12ff10292 100644 (file)
@@ -28,6 +28,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index efa1893f00c281c47e0e278afc4ae03c468c8dc8..bd3417a199ba998098dabeb4d77ca9272fb4cb07 100644 (file)
@@ -35,6 +35,7 @@
 #include <assert.h>
 #include <math.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 32c890c055181b0e101095b210be262c20d35baf..aa18423bdb9242ccedcc3566a47d8a262ff4c764 100644 (file)
@@ -25,6 +25,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index a3b657a453023dcdf22ea2ab673946fd5f63a827..65dc57c6b8fe777bb2ad7de563bd08e60dd49cbc 100644 (file)
@@ -28,6 +28,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_demux.h>
index fa3219867c8905bb55893ef2ae3b201f0bbba2fc..0fa8cd7755584be018805893122d888433b8a78d 100644 (file)
@@ -51,6 +51,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index b78676025161d24df157885930d57568faab2359..1c73e960ecaa34bd6160610040b02f98d5e40867 100644 (file)
@@ -31,6 +31,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_vout_window.h>
index a5e786c33e4df856fc4d695b9df2b9eadda5edde..6de779b5f4690878ddd3e3beba837a14df7cd5de 100644 (file)
@@ -42,6 +42,7 @@
 #include <math.h>
 #include <errno.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index 1739b31d38c91d6d229854c557e5d4bb2207d366..2fbf3ba9d8897b82fd470d588210a8caeffc3862 100644 (file)
@@ -26,6 +26,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_input.h>
index df6d202be856bdb65988f9a4d772ccbe411638da..e95790a37b8a30a1b814e9d8435d3b77c97db695 100644 (file)
@@ -25,6 +25,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_fs.h>
index d88ecb47990701b911c100ada3d80ab6d5b9e824..349e2576d600103ffa68a7e27347404f660a3311 100644 (file)
@@ -23,6 +23,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index a7e622a250f9be7a543bd03fc161d6ac52b8e6a9..81e2a8b66d501818a5bdeb62073ed8defe939f33 100644 (file)
@@ -39,6 +39,7 @@
 #include <assert.h>
 #include <time.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index 15e230954db7d71de47627b08c5769c93166f9ea..94b0c60b80694751da02a0e58a8913607e60ce7f 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index a42ef39358e40703576edbb3b54575a063c2279c..2aa57f0b7a9c85355f5344b7a0fa1d7447b0d6a1 100644 (file)
@@ -28,6 +28,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
index 434c76e2f992dd07be5189dbafd4082214a3a33e..6dc8119def1952ffe2860b592e6a0401ac999e92 100644 (file)
@@ -30,6 +30,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_input.h>
index c98932780d3dd6f7edff38f9d3b8431609e2c116..c2cb2e6fd7125d4eea9a3f02c5192b6096000dcc 100644 (file)
@@ -33,6 +33,7 @@
 
 #define kBufferSize 0x500
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_codec.h>
index e901e3dbe95ac3515f9e12c22c44ef7d11163bbc..1eac19d3117e4c7bb0c579e2695929019909dcf7 100644 (file)
@@ -54,6 +54,7 @@
 #import <Foundation/Foundation.h>
 #import <Growl/Growl.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_playlist.h>
index 2c4dfc99c5652d8528568bea2d8ffba4a7b49a7c..f4d99db17118b10e298f6ed9cff80f0c9a935da1 100644 (file)
@@ -28,6 +28,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_interface.h>
index e118ab260c9024b04deeb85f205abf6976c2b97c..bc234b458f88344c8c389919ba48fbd44359391e 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_services_discovery.h>
index 0e081e986acdb72891f9623eda266526afe001bd..0d1c262f0cfff2da4f2d4d2d650fa477c790e73e 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <sys/stat.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_url.h>
index a0e4ed5105d59b2df72493c4d9ccc77866c43325..8a66a9e48e23c82e3c48112e0f747e96fa287753 100644 (file)
@@ -24,6 +24,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_services_discovery.h>
index 58089ac0e13ba468d8707d06bee8ca17c73b7d6f..86663ae411a368e5a09131495cb1f5e1b0fa6fab 100644 (file)
@@ -29,6 +29,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_services_discovery.h>
index abdf9575bd9ac166907d5f9bd2e2b3a279646315..392d213671afc573508fabc8d5d22486ba2fcd81 100644 (file)
@@ -30,6 +30,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <assert.h>
index 9678bc55910c9b42b3a3aa4b527ce1858772f747..8465659d9b1e25250a36f43b37e9837727002b5e 100644 (file)
@@ -30,6 +30,7 @@
 #include <assert.h>
 #include <stdlib.h>
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_block.h>
index 6a701242f26ba7edc5d2bdd496a60668908f759b..7a03ba0ce0d23865c3ec815ca2ee2a64c430868c 100644 (file)
@@ -30,6 +30,7 @@
 # include "config.h"
 #endif
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_sout.h>
index f5b729c1ca61e42dbe53679bf6cd9382a3551f31..69190c11b1ec80e4c89efa8ad81d934afe94afb5 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <math.h>                                            /* sin(), cos() */
 
+#define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_atomic.h>