mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
fix the vob pipeline and set xvideosink as default
Original commit message from CVS: fix the vob pipeline and set xvideosink as default
This commit is contained in:
parent
403d0cc870
commit
65de555e54
1 changed files with 2 additions and 2 deletions
|
@ -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}) {
|
||||
|
|
Loading…
Reference in a new issue