From f981517414341389bb6e2c664c6b739c5ae21024 Mon Sep 17 00:00:00 2001 From: Christian Schaller Date: Sat, 22 Jun 2002 10:37:58 +0000 Subject: fix the vob pipeline and set xvideosink as default Original commit message from CVS: fix the vob pipeline and set xvideosink as default --- tools/gst-launch-ext | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/gst-launch-ext b/tools/gst-launch-ext index 3813cc92..d6e58cff 100755 --- a/tools/gst-launch-ext +++ b/tools/gst-launch-ext @@ -47,7 +47,7 @@ sub read_config print "No configuration file $config_file found. You might want to create one.\n"; } if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; } - if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "sdlvideosink"; } + if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "xvideosink"; } if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; } } @@ -88,7 +88,7 @@ read_config (); "mpg", "mpegdemux video_%02d! { queue ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.audio_%02d! { queue ! mad ! $cfg{AUDIOSINK} }", "ogg", "vorbisdec ! $cfg{AUDIOSINK}", "sid", "siddec ! $cfg{AUDIOSINK}", - "vob", "mpegdemux video_%02d! { queue max_level=500 ! mpeg2dec ! $cfg{VIDEOSINK} } mpegdemux0.private_stream_1_%02d! { queue max_level=500 ! a52dec ! $cfg{AUDIOSINK} }", + "vob", "mpegdemux name=foo video_%02d! { queue ! mpeg2dec ! {queue $cfg{VIDEOSINK} } } foo.audio_%02d! { queue ! a52dec ! { queue $cfg{AUDIOSINK} } }", ); if ($cfg{VISUALIZER}) { -- cgit