summaryrefslogtreecommitdiff
path: root/src/combined/flac_demuxer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/combined/flac_demuxer.c')
-rw-r--r--src/combined/flac_demuxer.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/combined/flac_demuxer.c b/src/combined/flac_demuxer.c
index 7a5aabe0b..e4ac98258 100644
--- a/src/combined/flac_demuxer.c
+++ b/src/combined/flac_demuxer.c
@@ -714,16 +714,6 @@ open_plugin (demux_class_t *class_gen,
/* FLAC Demuxer class */
static char *
-get_description (demux_class_t *this_gen) {
- return "FLAC demux plugin";
-}
-
-static char *
-get_identifier (demux_class_t *this_gen) {
- return "FLAC";
-}
-
-static char *
get_extensions (demux_class_t *this_gen) {
return "flac";
}
@@ -754,8 +744,8 @@ demux_flac_init_class (xine_t *xine, void *data) {
this->xine = xine;
this->demux_class.open_plugin = open_plugin;
- this->demux_class.get_description = get_description;
- this->demux_class.get_identifier = get_identifier;
+ this->demux_class.description = _("FLAC demux plugin");
+ this->demux_class.identifier = "FLAC";
this->demux_class.get_mimetypes = get_mimetypes;
this->demux_class.get_extensions = get_extensions;
this->demux_class.dispose = class_dispose;