summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2004-01-15 17:16:37 +0000
committerJulien Moutte <julien@moutte.net>2004-01-15 17:16:37 +0000
commit36470772d630619cacc1d2e669acae42b7e56c56 (patch)
treed6f1e8f7ace584f2ac5c2ccae59027c7f9b33450 /tools
parent13bee94964d97359e3f4bc383cefc278b2beb3aa (diff)
gst/videofilter/gstvideobalance.c: Implement passthru if settings are in the middle.
Original commit message from CVS: 2004-01-15 Julien MOUTTE <julien@moutte.net> * gst/videofilter/gstvideobalance.c: (gst_videobalance_init), (gst_videobalance_colorbalance_set_value): Implement passthru if settings are in the middle. * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gst-launch-ext.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gst-launch-ext.in b/tools/gst-launch-ext.in
index add6e032..45093a8e 100755
--- a/tools/gst-launch-ext.in
+++ b/tools/gst-launch-ext.in
@@ -56,7 +56,7 @@ sub read_config
print "This is not an error, just a friendly reminder... Check the man page.\n\n";
}
if (!defined $cfg{AUDIOSINK}) { $cfg{AUDIOSINK} = "osssink"; }
- if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "colorspace ! xvideosink"; }
+ if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "colorspace ! ximagesink"; }
if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; }
if ($command =~ /(.+)\/gst-launch-ext$/)