summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libsputext/demux_sputext.c12
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;