From 8214523994f881cd7e35626ec262126c004a75c2 Mon Sep 17 00:00:00 2001 From: Petri Hintukainen Date: Mon, 29 Oct 2012 09:13:27 +0200 Subject: input_test: use higher priority than gnome_vfs (gnome_vfs wants to handle all test: mrls) --- src/input/input_test.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/input/input_test.c b/src/input/input_test.c index 6905a7126..d00486145 100644 --- a/src/input/input_test.c +++ b/src/input/input_test.c @@ -755,12 +755,16 @@ static void *init_plugin (xine_t *xine, void *data) { return this; } +static input_info_t input_info_test = { + 110 /* priority */ +}; + /* * exported plugin catalog entry */ const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT | PLUGIN_MUST_PRELOAD, 18, "test", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT | PLUGIN_MUST_PRELOAD, 18, "TEST", XINE_VERSION_CODE, &input_info_test, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; -- cgit v1.2.3