diff options
| author | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 11:40:37 +0100 |
|---|---|---|
| committer | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 11:40:37 +0100 |
| commit | 7a42265fbf3833b328f7ac87d58d732a179ef6e5 (patch) | |
| tree | 41f2a58356b457a0253eded2068c14e447b633b6 /src/vdr/input_vdr.c | |
| parent | 9969614c2549cc5c7f97a7b32253b7b08e6bf9b7 (diff) | |
| download | xine-lib-7a42265fbf3833b328f7ac87d58d732a179ef6e5.tar.gz xine-lib-7a42265fbf3833b328f7ac87d58d732a179ef6e5.tar.bz2 | |
Combine vdr plugins into a single binary.
Several files were renamed for consistency.
--HG--
rename : include/xine/input_vdr.h => include/xine/vdr.h
rename : src/vdr/post_vdr.c => src/vdr/combined_vdr.c
rename : src/vdr/post_vdr.h => src/vdr/combined_vdr.h
Diffstat (limited to 'src/vdr/input_vdr.c')
| -rw-r--r-- | src/vdr/input_vdr.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/vdr/input_vdr.c b/src/vdr/input_vdr.c index 91c3fa454..9634faa96 100644 --- a/src/vdr/input_vdr.c +++ b/src/vdr/input_vdr.c @@ -45,8 +45,8 @@ #include <xine/xineutils.h> #include <xine/input_plugin.h> -#include <xine/input_vdr.h> -#include "post_vdr.h" +#include <xine/vdr.h> +#include "combined_vdr.h" @@ -2042,7 +2042,7 @@ static char **vdr_class_get_autoplay_list(input_class_t *this_gen, return class->mrls; } -static void *init_class(xine_t *xine, void *data) +void *vdr_input_init_plugin(xine_t *xine, void *data) { vdr_input_class_t *this; @@ -2065,15 +2065,3 @@ static void *init_class(xine_t *xine, void *data) return this; } - -/* - * exported plugin catalog entry - */ - -const plugin_info_t xine_plugin_info[] EXPORTED = -{ - /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 18, "VDR", XINE_VERSION_CODE, NULL, init_class }, - { PLUGIN_NONE, 0, "", 0, NULL, NULL } -}; - |
