From 700e02e97c0fb3300627c76ad4e49085582a55b3 Mon Sep 17 00:00:00 2001 From: Christian Schaller Date: Fri, 16 Jan 2004 23:32:45 +0000 Subject: [PATCH] update gst-launch-ext to use a better plugin for colorspace and X win Original commit message from CVS: update gst-launch-ext to use a better plugin for colorspace and X win --- ChangeLog | 4 ++++ tools/gst-launch-ext.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7359631607..9ed47f98b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-01-17 Christian Schaller + + * tools/gst-launch-ext.in - update for new plugins + 2004-01-16 David Schleef * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of diff --git a/tools/gst-launch-ext.in b/tools/gst-launch-ext.in index 45093a8e79..05f0b1b077 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 ! ximagesink"; } + if (!defined $cfg{VIDEOSINK}) { $cfg{VIDEOSINK} = "ffcolorspace ! xvimagesink"; } if (!defined $cfg{CVS_PATH}) { $cfg{CVS_PATH} = `echo -n ~`."/gst/cvs"; } if ($command =~ /(.+)\/gst-launch-ext$/)