diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-10-29 09:13:27 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-10-29 09:13:27 +0200 |
commit | 8214523994f881cd7e35626ec262126c004a75c2 (patch) | |
tree | 7bcdfdeb8e72f75a42cdc4d3f9c77063d40e4679 /src | |
parent | 49206faa08083046f88ecf6cddc8a4a99e02f5a4 (diff) | |
download | xine-lib-8214523994f881cd7e35626ec262126c004a75c2.tar.gz xine-lib-8214523994f881cd7e35626ec262126c004a75c2.tar.bz2 |
input_test: use higher priority than gnome_vfs (gnome_vfs wants to handle all test: mrls)
Diffstat (limited to 'src')
-rw-r--r-- | src/input/input_test.c | 6 |
1 files changed, 5 insertions, 1 deletions
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 } }; |