summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_pes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_pes.c')
-rw-r--r--src/demuxers/demux_pes.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demuxers/demux_pes.c b/src/demuxers/demux_pes.c
index 5b54db737..931f3bad4 100644
--- a/src/demuxers/demux_pes.c
+++ b/src/demuxers/demux_pes.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_pes.c,v 1.34 2002/07/14 22:27:25 miguelfreitas Exp $
+ * $Id: demux_pes.c,v 1.35 2002/09/04 23:31:08 guenter Exp $
*
* demultiplexer for mpeg 2 PES (Packetized Elementary Streams)
* reads streams of variable blocksizes
@@ -524,7 +524,7 @@ static int demux_pes_open(demux_plugin_t *this_gen,
xine_strdupa(valid_mrls, (this->config->register_string(this->config,
"mrl.mrls_pes", VALID_MRLS,
_("valid mrls for pes demuxer"),
- NULL, NULL, NULL)));
+ NULL, 20, NULL, NULL)));
media = strstr(MRL, "://");
if(media) {
@@ -554,7 +554,7 @@ static int demux_pes_open(demux_plugin_t *this_gen,
xine_strdupa(valid_ends, (this->config->register_string(this->config,
"mrl.ends_pes", VALID_ENDS,
_("valid mrls ending for pes demuxer"),
- NULL, NULL, NULL)));
+ NULL, 20, NULL, NULL)));
while((m = xine_strsep(&valid_ends, ",")) != NULL) {
while(*m == ' ' || *m == '\t') m++;
@@ -612,11 +612,11 @@ demux_plugin_t *init_demuxer_plugin(int iface, xine_t *xine) {
(void*) this->config->register_string(this->config, "mrl.mrls_pes", VALID_MRLS,
_("valid mrls for pes demuxer"),
- NULL, NULL, NULL);
+ NULL, 20, NULL, NULL);
(void*) this->config->register_string(this->config,
"mrl.ends_pes", VALID_ENDS,
_("valid mrls ending for pes demuxer"),
- NULL, NULL, NULL);
+ NULL, 20, NULL, NULL);
this->demux_plugin.interface_version = DEMUXER_PLUGIN_IFACE_VERSION;
this->demux_plugin.open = demux_pes_open;