diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 13:33:26 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 13:33:26 +0100 |
commit | 6834a34aeb2da67dc0d1bb4c73133625cd34fc95 (patch) | |
tree | 10aec6b30df0c4d495fc5075201378630799562d | |
parent | 78fc25b90a9659048ba3a9a178a45a3e536765f2 (diff) | |
download | xine-lib-6834a34aeb2da67dc0d1bb4c73133625cd34fc95.tar.gz xine-lib-6834a34aeb2da67dc0d1bb4c73133625cd34fc95.tar.bz2 |
Update libsputext demuxer, which I forgot on the previous run.
-rw-r--r-- | src/libsputext/demux_sputext.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/libsputext/demux_sputext.c b/src/libsputext/demux_sputext.c index 161bb10d3..a1b1d93a2 100644 --- a/src/libsputext/demux_sputext.c +++ b/src/libsputext/demux_sputext.c @@ -1448,14 +1448,6 @@ static demux_plugin_t *open_demux_plugin (demux_class_t *class_gen, xine_stream_ return NULL; } -static const char *get_demux_description (demux_class_t *this_gen) { - return "sputext demuxer plugin"; -} - -static const char *get_demux_identifier (demux_class_t *this_gen) { - return "sputext"; -} - static const char *get_demux_extensions (demux_class_t *this_gen) { return "asc txt sub srt smi ssa"; } @@ -1488,8 +1480,8 @@ static void *init_sputext_demux_class (xine_t *xine, void *data) { this = xine_xmalloc (sizeof (demux_sputext_class_t)); this->demux_class.open_plugin = open_demux_plugin; - this->demux_class.description = FLAMEFIXMEget_demux_description; - this->demux_class.identifier = FLAMEFIXMEget_demux_identifier; + this->demux_class.description = _("sputext demuxer plugin"); + this->demux_class.identifier = "sputext"; this->demux_class.get_mimetypes = get_demux_mimetypes; this->demux_class.get_extensions = get_demux_extensions; this->demux_class.dispose = demux_class_dispose; |