diff options
author | Christian Schaller <uraeus@gnome.org> | 2002-06-22 10:37:58 +0000 |
---|---|---|
committer | Christian Schaller <uraeus@gnome.org> | 2002-06-22 10:37:58 +0000 |
commit | 65de555e5481da5dcc6adceff12307e6d82434bd (patch) | |
tree | 52d12e7612f98b7e434d72b3c318c90daecc8cee /tools | |
parent | 403d0cc870a7503e3c08ad061ccbbb7bb93b7ab5 (diff) |
fix the vob pipeline and set xvideosink as default
Original commit message from CVS:
fix the vob pipeline and set xvideosink as default
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gst-launch-ext | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gst-launch-ext b/tools/gst-launch-ext index 3813cc92a..d6e58cff6 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}) { |