summaryrefslogtreecommitdiffstats
path: root/gst/spectrum/demo-audiotest.c
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-11-06 12:23:35 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-11-06 12:23:35 +0000
commit1407259dbc44b0cf23c9e72770c990e5f8cac680 (patch)
treeb9dd5dd88cf2b3f51dc6353b9b713eb60ebc7605 /gst/spectrum/demo-audiotest.c
parent209d6105d73bcdb01f20432035fc58436caa26b7 (diff)
downloadgst-plugins-bad-1407259dbc44b0cf23c9e72770c990e5f8cac680.tar.gz
gst-plugins-bad-1407259dbc44b0cf23c9e72770c990e5f8cac680.tar.bz2
gst-plugins-bad-1407259dbc44b0cf23c9e72770c990e5f8cac680.zip
gst/spectrum/demo-audiotest.c: Use autoaudiosink instead of alsasink and use a sine wave.
Original commit message from CVS: * gst/spectrum/demo-audiotest.c: (main): Use autoaudiosink instead of alsasink and use a sine wave. * gst/spectrum/gstspectrum.c: Fix the magnitude calculation.
Diffstat (limited to 'gst/spectrum/demo-audiotest.c')
-rw-r--r--gst/spectrum/demo-audiotest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/spectrum/demo-audiotest.c b/gst/spectrum/demo-audiotest.c
index 8cc8201f..05c9f886 100644
--- a/gst/spectrum/demo-audiotest.c
+++ b/gst/spectrum/demo-audiotest.c
@@ -28,7 +28,7 @@
#include <gst/gst.h>
#include <gtk/gtk.h>
-#define DEFAULT_AUDIOSINK "alsasink"
+#define DEFAULT_AUDIOSINK "autoaudiosink"
static GtkWidget *drawingarea = NULL;
static guint spect_height = 64;
@@ -126,7 +126,7 @@ main (int argc, char *argv[])
bin = gst_pipeline_new ("bin");
src = gst_element_factory_make ("audiotestsrc", "src");
- g_object_set (G_OBJECT (src), "wave", 1, NULL);
+ g_object_set (G_OBJECT (src), "wave", 0, NULL);
spectrum = gst_element_factory_make ("spectrum", "spectrum");
g_object_set (G_OBJECT (spectrum), "bands", spect_bands, "threshold", -80,