diff options
| author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2008-01-01 07:22:49 +0200 |
|---|---|---|
| committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2008-01-01 07:22:49 +0200 |
| commit | 9285ce63facf833394d79d4e5be6adfa4c70eac6 (patch) | |
| tree | 3218cd222cebdd6d8183fbfebb227e0198cd049c /src/post/mosaico | |
| parent | 3ebd29271aee0665b759a7ba48fb3a343282fd0b (diff) | |
| download | xine-lib-9285ce63facf833394d79d4e5be6adfa4c70eac6.tar.gz xine-lib-9285ce63facf833394d79d4e5be6adfa4c70eac6.tar.bz2 | |
Bump post plugin interface version after API changes
(Changeset 9602: Replace get_identifier/get_description functions with strings.)
Diffstat (limited to 'src/post/mosaico')
| -rw-r--r-- | src/post/mosaico/mosaico.c | 2 | ||||
| -rw-r--r-- | src/post/mosaico/switch.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/post/mosaico/mosaico.c b/src/post/mosaico/mosaico.c index a3e846026..6c01a66e1 100644 --- a/src/post/mosaico/mosaico.c +++ b/src/post/mosaico/mosaico.c @@ -41,7 +41,7 @@ static const post_info_t mosaico_special_info = { XINE_POST_TYPE_VIDEO_COMPOSE } const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 9, "mosaico", XINE_VERSION_CODE, &mosaico_special_info, &mosaico_init_plugin }, + { PLUGIN_POST, 10, "mosaico", XINE_VERSION_CODE, &mosaico_special_info, &mosaico_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; diff --git a/src/post/mosaico/switch.c b/src/post/mosaico/switch.c index de963c7b3..a4de02715 100644 --- a/src/post/mosaico/switch.c +++ b/src/post/mosaico/switch.c @@ -41,7 +41,7 @@ static const post_info_t switch_special_info = { XINE_POST_TYPE_VIDEO_COMPOSE }; const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_POST, 9, "switch", XINE_VERSION_CODE, &switch_special_info, &switch_init_plugin }, + { PLUGIN_POST, 10, "switch", XINE_VERSION_CODE, &switch_special_info, &switch_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |
