diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 18:16:49 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 18:16:49 +0100 |
commit | 265e36a8ddde1fa296ea39c67928aa1b7a11f7e5 (patch) | |
tree | 1e9bbff7946480aeae50c6925609709f19bbddf7 /src/combined/xine_ogg_demuxer.c | |
parent | 158ced5414ebb912f1d5111d2303097c7206f656 (diff) | |
download | xine-lib-265e36a8ddde1fa296ea39c67928aa1b7a11f7e5.tar.gz xine-lib-265e36a8ddde1fa296ea39c67928aa1b7a11f7e5.tar.bz2 |
Bump the interface version for demuxer plugins.
Diffstat (limited to 'src/combined/xine_ogg_demuxer.c')
-rw-r--r-- | src/combined/xine_ogg_demuxer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/combined/xine_ogg_demuxer.c b/src/combined/xine_ogg_demuxer.c index 6f8dbe658..53365c7b9 100644 --- a/src/combined/xine_ogg_demuxer.c +++ b/src/combined/xine_ogg_demuxer.c @@ -2190,8 +2190,8 @@ void *theora_init_plugin (xine_t *xine, void *data); const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_DEMUX, 26, "ogg", XINE_VERSION_CODE, &demux_info_ogg, ogg_init_class }, - { PLUGIN_DEMUX, 26, "anx", XINE_VERSION_CODE, &demux_info_anx, anx_init_class }, + { PLUGIN_DEMUX, 27, "ogg", XINE_VERSION_CODE, &demux_info_ogg, ogg_init_class }, + { PLUGIN_DEMUX, 27, "anx", XINE_VERSION_CODE, &demux_info_anx, anx_init_class }, #ifdef HAVE_VORBIS { PLUGIN_AUDIO_DECODER, 15, "vorbis", XINE_VERSION_CODE, &dec_info_vorbis, vorbis_init_plugin }, #endif |