From 6834a34aeb2da67dc0d1bb4c73133625cd34fc95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Tue, 11 Dec 2007 13:33:26 +0100 Subject: Update libsputext demuxer, which I forgot on the previous run. --- src/libsputext/demux_sputext.c | 12 ++---------- 1 file 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; -- cgit v1.2.3