tools/gst-feedback-m.m: Don't only use unversioned tools, try versioned tools as...
authorTim-Philipp Müller <tim@centricular.net>
Wed, 21 Jun 2006 10:14:00 +0000 (10:14 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 21 Jun 2006 10:14:00 +0000 (10:14 +0000)
Original commit message from CVS:
* tools/gst-feedback-m.m:
Don't only use unversioned tools, try versioned tools as well
(#345086).

ChangeLog
tools/gst-feedback-m.m

index 259ae6773ab0799b00fe21144290a21fc472b4f8..f0690c465b162727e7f5a13a4317e95daa6625eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * tools/gst-feedback-m.m:
+         Don't only use unversioned tools, try versioned tools as well
+         (#345086).
+
 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
 
        * gst/gstbus.c: (gst_bus_class_init):
index 0ca3387ac3a81647d89b2c67d1955873a1ebf501..0365182d8a82fd733bf57d878b86d093736e1f1d 100755 (executable)
@@ -63,12 +63,21 @@ do
   done
 done
 
-echo "+   GSTREAMER INFORMATION"
+echo "+   GSTREAMER INFORMATION (unversioned)"
 command_output "which gst-inspect"
 command_output "gst-inspect"
 command_output "gst-inspect fakesrc"
 command_output "gst-inspect fakesink"
-command_output "gst-launch fakesrc num_buffers=5 ! fakesink"
+command_output "gst-launch fakesrc num-buffers=5 ! fakesink"
+for mm in 0.6 0.7 0.8 0.9 0.10
+do
+  echo "+   GSTREAMER INFORMATION ($mm)"
+  command_output "which gst-inspect-$mm"
+  command_output "gst-inspect-$mm"
+  command_output "gst-inspect-$mm fakesrc"
+  command_output "gst-inspect-$mm fakesink"
+  command_output "gst-launch-$mm fakesrc num-buffers=5 ! fakesink"
+done
 
 echo "++  looking for gstreamer libraries in common locations"
 for dirs in /usr/lib /usr/local/lib; do
@@ -85,6 +94,10 @@ done
 
 echo "+   GSTREAMER PLUG-INS INFORMATION"
 command_output "gst-inspect volume"
+for mm in 0.6 0.7 0.8 0.9 0.10
+do
+  command_output "gst-inspect-$mm volume"
+done
 
 echo "++  looking for gstreamer volume plugin in common locations"
 for dirs in /usr/lib /usr/local/lib; do