diff options
| author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 13:26:26 +0100 |
|---|---|---|
| committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 13:26:26 +0100 |
| commit | 78fc25b90a9659048ba3a9a178a45a3e536765f2 (patch) | |
| tree | 611a2c1de323323a3ee889c14b7c5de8500acdc1 /src/libspucmml | |
| parent | f8bd5f9976485960fa7b2ffd1ca2a347044b38ea (diff) | |
| download | xine-lib-78fc25b90a9659048ba3a9a178a45a3e536765f2.tar.gz xine-lib-78fc25b90a9659048ba3a9a178a45a3e536765f2.tar.bz2 | |
Update all misc plugins to the new identifier/description interface. Add _() where missing, for i18n.
Diffstat (limited to 'src/libspucmml')
| -rw-r--r-- | src/libspucmml/xine_cmml_decoder.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/libspucmml/xine_cmml_decoder.c b/src/libspucmml/xine_cmml_decoder.c index b684d21cb..5daf5e7fc 100644 --- a/src/libspucmml/xine_cmml_decoder.c +++ b/src/libspucmml/xine_cmml_decoder.c @@ -494,14 +494,6 @@ static void spucmml_class_dispose (spu_decoder_class_t *this) { free (this); } -static char *spucmml_class_get_identifier (spu_decoder_class_t *this) { - return "spucmml"; -} - -static char *spucmml_class_get_description (spu_decoder_class_t *this) { - return "CMML subtitle decoder plugin"; -} - static void update_src_encoding(void *this_gen, xine_cfg_entry_t *entry) { spucmml_class_t *this = (spucmml_class_t *)this_gen; @@ -517,8 +509,8 @@ static void *init_spu_decoder_plugin (xine_t *xine, void *data) { this = (spucmml_class_t *) xine_xmalloc (sizeof (spucmml_class_t)); this->class.open_plugin = spucmml_class_open_plugin; - this->class.get_identifier = spucmml_class_get_identifier; - this->class.get_description = spucmml_class_get_description; + this->class.identifier = "spucmml"; + this->class.description = _("CMML subtitle decoder plugin"); this->class.dispose = spucmml_class_dispose; this->xine = xine; |
