summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-07-07 21:24:38 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-07-07 23:59:59 +0100
commitdd56714b14da80054b1201cf655b0780268960a5 (patch)
tree546c98b08861b8be63bafbee39ddc6a19e7ec928 /tools
parenta409d04d211f4ee5be3e916d5cdc8e013472f8f7 (diff)
ffmpegcolorspace -> videoconvert
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-launch-ext.1.in2
-rw-r--r--tools/gst-visualise-m.m2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/gst-launch-ext.1.in b/tools/gst-launch-ext.1.in
index ada73802ce..90ee34cc40 100644
--- a/tools/gst-launch-ext.1.in
+++ b/tools/gst-launch-ext.1.in
@@ -27,7 +27,7 @@ Here is an example .gst file that implements the same defaults as hard-coded
in the script :
AUDIOSINK = osssink
-VIDEOSINK = ffmpegcolorspace ! xvimagesink
+VIDEOSINK = videoconvert ! xvimagesink
You can change osssink to esdsink or alsasink (if you have
the plug-in), and you can change xvimagesink to ximagesink, aasink
diff --git a/tools/gst-visualise-m.m b/tools/gst-visualise-m.m
index 293209aee1..798929b188 100644
--- a/tools/gst-visualise-m.m
+++ b/tools/gst-visualise-m.m
@@ -52,7 +52,7 @@ sub visualise(@)
my $pipe;
$pipe = $vis unless $pipe = $pipes{$vis};
- $command = "gst-launch-@GST_MAJORMINOR@ $cfg{AUDIOSRC} ! $pipe ! { queue ! ffmpegcolorspace ! $cfg{VIDEOSINK} }";
+ $command = "gst-launch-@GST_MAJORMINOR@ $cfg{AUDIOSRC} ! $pipe ! { queue ! videoconvert ! $cfg{VIDEOSINK} }";
print "Running $command\n";
system ("PATH=\$PATH:".$cfg{CVS_PATH}."/gstreamer/tools $command");
}