From 4c7ff9a4ae132e987254cd67d537b1f1a5076f97 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Thu, 8 Nov 2007 15:56:46 +0000 Subject: [PATCH] gst/equalizer/demo.c: Make default volume a bit less. Improve layout by giving more space to the slider with big-numb... Original commit message from CVS: * gst/equalizer/demo.c: Make default volume a bit less. Improve layout by giving more space to the slider with big-numbers and enable fill. --- ChangeLog | 6 ++++++ gst/equalizer/demo.c | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 412a57c666..b1e045881d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-11-08 Stefan Kost + + * gst/equalizer/demo.c: + Make default volume a bit less. Improve layout by giving more space to + the slider with big-numbers and enable fill. + 2007-11-07 Sebastian Dröge * configure.ac: diff --git a/gst/equalizer/demo.c b/gst/equalizer/demo.c index cf361a9d2f..b4f1c55044 100644 --- a/gst/equalizer/demo.c +++ b/gst/equalizer/demo.c @@ -132,8 +132,9 @@ main (int argc, char *argv[]) bin = gst_pipeline_new ("bin"); + /* White noise */ src = gst_element_factory_make ("audiotestsrc", "src"); - g_object_set (G_OBJECT (src), "wave", 5, NULL); /* White noise */ + g_object_set (G_OBJECT (src), "wave", 5, "volume", 0.5, NULL); /* Force float32 samples */ capsfilter = gst_element_factory_make ("capsfilter", "capsfilter"); @@ -175,7 +176,7 @@ main (int argc, char *argv[]) G_CALLBACK (on_configure_event), (gpointer) spectrum); gtk_box_pack_start (GTK_BOX (vbox), drawingarea, TRUE, TRUE, 0); - hbox = gtk_hbox_new (FALSE, 30); + hbox = gtk_hbox_new (FALSE, 20); int i; @@ -215,7 +216,7 @@ main (int argc, char *argv[]) gtk_widget_set_size_request (widget, 25, 150); g_signal_connect (G_OBJECT (widget), "value-changed", G_CALLBACK (on_bandwidth_changed), (gpointer) band); - gtk_box_pack_start (GTK_BOX (scales_hbox), widget, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (scales_hbox), widget, TRUE, TRUE, 0); widget = gtk_vscale_new_with_range (20.0, 20000.0, 5.0); gtk_scale_set_draw_value (GTK_SCALE (widget), TRUE); @@ -224,11 +225,11 @@ main (int argc, char *argv[]) gtk_widget_set_size_request (widget, 25, 150); g_signal_connect (G_OBJECT (widget), "value-changed", G_CALLBACK (on_freq_changed), (gpointer) band); - gtk_box_pack_start (GTK_BOX (scales_hbox), widget, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (scales_hbox), widget, TRUE, TRUE, 0); gtk_container_add (GTK_CONTAINER (frame), scales_hbox); - gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0); } gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);