diff options
Diffstat (limited to 'src/demuxers/demux_snd.c')
-rw-r--r-- | src/demuxers/demux_snd.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/demuxers/demux_snd.c b/src/demuxers/demux_snd.c index c94fee5b6..9fce979f0 100644 --- a/src/demuxers/demux_snd.c +++ b/src/demuxers/demux_snd.c @@ -19,7 +19,7 @@ * * SND/AU File Demuxer by Mike Melanson (melanson@pcisys.net) * - * $Id: demux_snd.c,v 1.2 2002/09/01 04:30:04 tmmm Exp $ + * $Id: demux_snd.c,v 1.3 2002/09/04 23:31:08 guenter Exp $ * */ @@ -219,7 +219,8 @@ static int demux_snd_open(demux_plugin_t *this_gen, xine_strdupa(valid_ends, (this->config->register_string(this->config, "mrl.ends_snd", VALID_ENDS, _("valid mrls ending for snd demuxer"), - NULL, NULL, NULL))); while((m = xine_strsep(&valid_ends, ",")) != NULL) { + NULL, 10, NULL, NULL))); + while((m = xine_strsep(&valid_ends, ",")) != NULL) { while(*m == ' ' || *m == '\t') m++; @@ -477,8 +478,9 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) { (void*) this->config->register_string(this->config, "mrl.ends_snd", VALID_ENDS, - _("valid mrls ending for snd demuxer"), NULL, NULL, NULL); - + _("valid mrls ending for snd demuxer"), + NULL, 10, NULL, NULL); + this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION; this->demux_plugin.open = demux_snd_open; this->demux_plugin.start = demux_snd_start; |