diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-22 23:41:28 +0100 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-22 23:41:28 +0100 |
| commit | da40425a2ab350e87e678ae64113dea47edf7079 (patch) | |
| tree | df7214f023e1c6ca527dced4f4439cfd3df2b264 /src/spu_dec/sputext_decoder.c | |
| parent | 188d7498b854233ac5f329fa342b16cbe1087d62 (diff) | |
| download | xine-lib-da40425a2ab350e87e678ae64113dea47edf7079.tar.gz xine-lib-da40425a2ab350e87e678ae64113dea47edf7079.tar.bz2 | |
Merge the sputext decoder and demuxer in a single plugin.
Diffstat (limited to 'src/spu_dec/sputext_decoder.c')
| -rw-r--r-- | src/spu_dec/sputext_decoder.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/spu_dec/sputext_decoder.c b/src/spu_dec/sputext_decoder.c index 12d1986bb..73d242524 100644 --- a/src/spu_dec/sputext_decoder.c +++ b/src/spu_dec/sputext_decoder.c @@ -985,8 +985,11 @@ static const decoder_info_t spudec_info = { 1 /* priority */ }; +extern void *init_sputext_demux_class (xine_t *xine, void *data); + const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_SPU_DECODER | PLUGIN_MUST_PRELOAD, 17, "sputext", XINE_VERSION_CODE, &spudec_info, &init_spu_decoder_plugin }, + { PLUGIN_DEMUX, 27, "sputext", XINE_VERSION_CODE, NULL, &init_sputext_demux_class }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |
