move old example to tests/examples/volume/volune.c
authorStefan Kost <ensonic@users.sourceforge.net>
Fri, 30 Dec 2005 14:54:06 +0000 (14:54 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Fri, 30 Dec 2005 14:54:06 +0000 (14:54 +0000)
Original commit message from CVS:
* configure.ac:
* gst/volume/Makefile.am:
* gst/volume/demo.c:
move old example to tests/examples/volume/volune.c
* tests/examples/Makefile.am:
* tests/examples/seek/seek.c: (main):
change window-close event from "delete-event" to "destroy"
* tests/examples/volume/Makefile.am:
* tests/examples/volume/volume.c: (value_changed_callback),
(setup_gui), (message_received), (eos_message_received), (main):
fix event handling and bus usage

ChangeLog
configure.ac
gst/volume/Makefile.am
gst/volume/demo.c [deleted file]
tests/examples/Makefile.am
tests/examples/seek/seek.c
tests/examples/volume/Makefile.am [new file with mode: 0644]
tests/examples/volume/volume.c [new file with mode: 0644]

index f95e3aaf6602530004414f85ff139f9644b99798..0fec1066d904a0f289693c66f6ee2fad79e77d65 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2005-12-30  Stefan Kost  <ensonic@users.sf.net>
+
+       * configure.ac:
+       * gst/volume/Makefile.am:
+       * gst/volume/demo.c:
+          move old example to tests/examples/volume/volune.c
+       * tests/examples/Makefile.am:
+       * tests/examples/seek/seek.c: (main):
+          change window-close event from "delete-event" to "destroy"
+       * tests/examples/volume/Makefile.am:
+       * tests/examples/volume/volume.c: (value_changed_callback),
+       (setup_gui), (message_received), (eos_message_received), (main):
+          fix event handling and bus usage
+
+
 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
 
        * gst/audiotestsrc/gstaudiotestsrc.c:
index 95a921c5dc71a5e2c3c0e7681907bebe13d2a39d..073fde8272e46c71415be39e3116e265d04f9360 100644 (file)
@@ -640,6 +640,7 @@ tests/Makefile
 tests/check/Makefile
 tests/examples/Makefile
 tests/examples/seek/Makefile
+tests/examples/volume/Makefile
 tests/icles/Makefile
 docs/Makefile
 docs/libs/Makefile
index 71219e096ac74d62f7649cd727335df6fae21b2f..8d7c72470d841aa4022fac3099349165ed17948b 100644 (file)
@@ -11,9 +11,3 @@ libgstvolume_la_LIBADD = \
 
 noinst_HEADERS = gstvolume.h
 
-if HAVE_GTK
-noinst_PROGRAMS = demo
-demo_SOURCES = demo.c
-demo_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS) -D_GNU_SOURCE
-demo_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) -lm
-endif
diff --git a/gst/volume/demo.c b/gst/volume/demo.c
deleted file mode 100644 (file)
index 802c21c..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-/* GStreamer
- *
- * demo.c: sample application to change the volume of a pipeline
- *
- * Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <math.h>
-
-#include <gst/gst.h>
-#include <gtk/gtk.h>
-
-/* global pointer for the scale widget */
-GtkWidget *elapsed;
-GtkWidget *scale;
-
-#ifndef M_LN10
-#define M_LN10 (log(10.0))
-#endif
-
-static void
-value_changed_callback (GtkWidget * widget, GstElement * volume)
-{
-  gdouble value;
-  gdouble level;
-
-  value = gtk_range_get_value (GTK_RANGE (widget));
-  level = exp (value / 20.0 * M_LN10);
-  g_print ("Value: %f dB, level: %f\n", value, level);
-  g_object_set (volume, "volume", level, NULL);
-}
-
-static void
-setup_gui (GstElement * volume)
-{
-  GtkWidget *window;
-  GtkWidget *vbox;
-  GtkWidget *label, *hbox;
-
-  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
-  g_signal_connect (window, "destroy", gtk_main_quit, NULL);
-
-  vbox = gtk_vbox_new (TRUE, 0);
-  gtk_container_add (GTK_CONTAINER (window), vbox);
-
-  /* elapsed widget */
-  hbox = gtk_hbox_new (TRUE, 0);
-  label = gtk_label_new ("Elapsed");
-  elapsed = gtk_label_new ("0.000");
-  gtk_container_add (GTK_CONTAINER (hbox), label);
-  gtk_container_add (GTK_CONTAINER (hbox), elapsed);
-  gtk_container_add (GTK_CONTAINER (vbox), hbox);
-
-  /* volume */
-  hbox = gtk_hbox_new (TRUE, 0);
-  label = gtk_label_new ("volume");
-  gtk_container_add (GTK_CONTAINER (hbox), label);
-  scale = gtk_hscale_new_with_range (-90.0, 10.0, 0.2);
-  gtk_range_set_value (GTK_RANGE (scale), 0.0);
-  gtk_widget_set_size_request (scale, 100, -1);
-  gtk_container_add (GTK_CONTAINER (hbox), scale);
-  gtk_container_add (GTK_CONTAINER (vbox), hbox);
-  g_signal_connect (scale, "value-changed",
-      G_CALLBACK (value_changed_callback), volume);
-
-  gtk_widget_show_all (GTK_WIDGET (window));
-}
-
-int
-main (int argc, char *argv[])
-{
-
-  GstElement *pipeline = NULL;
-  GError *error = NULL;
-  GstElement *volume;
-
-  gst_init (&argc, &argv);
-  gtk_init (&argc, &argv);
-
-  pipeline = gst_parse_launchv ((const gchar **) &argv[1], &error);
-  if (error) {
-    g_print ("pipeline could not be constructed: %s\n", error->message);
-    g_print ("Please give a complete pipeline  with a 'volume' element.\n");
-    g_print ("Example: audiotestsrc ! volume ! %s\n", DEFAULT_AUDIOSINK);
-    g_error_free (error);
-    return 1;
-  }
-
-  volume = gst_bin_get_by_name (GST_BIN (pipeline), "volume0");
-  if (volume == NULL) {
-    g_print ("Please give a pipeline with a 'volume' element in it\n");
-    return 1;
-  }
-
-  /* setup GUI */
-  setup_gui (volume);
-
-  /* go to main loop */
-  gst_element_set_state (pipeline, GST_STATE_PLAYING);
-  gst_bus_poll (gst_element_get_bus (pipeline),
-      GST_MESSAGE_EOS | GST_MESSAGE_ERROR, -1);
-  gst_element_set_state (pipeline, GST_STATE_NULL);
-
-  return 0;
-}
index 8bd68dfb3c928ea40f84bfc3ade92ca5ccedcf45..a92de36b80249bb5cec55f89bd3cb21d6d484e8b 100644 (file)
@@ -4,6 +4,6 @@ else
 FT2_SUBDIRS =
 endif
 
-SUBDIRS = $(FT2_SUBDIRS)
+SUBDIRS = $(FT2_SUBDIRS) volume
 
-DIST_SUBDIRS = seek
+DIST_SUBDIRS = seek volume
index 5b2be23b8a8008061194790749a1ba675fc60654..f3e9b0ef8565e3e78afed7ac24c2bd2e3bb2c92d 100644 (file)
@@ -1440,7 +1440,7 @@ main (int argc, char **argv)
   g_signal_connect (G_OBJECT (flush_checkbox), "toggled",
       G_CALLBACK (flush_toggle_cb), pipeline);
 
-  g_signal_connect (G_OBJECT (window), "delete_event", gtk_main_quit, NULL);
+  g_signal_connect (G_OBJECT (window), "destroy", gtk_main_quit, NULL);
 
   /* show the gui. */
   gtk_widget_show_all (window);
diff --git a/tests/examples/volume/Makefile.am b/tests/examples/volume/Makefile.am
new file mode 100644 (file)
index 0000000..b89e49a
--- /dev/null
@@ -0,0 +1,6 @@
+if HAVE_GTK
+noinst_PROGRAMS = volume
+volume_SOURCES = volume.c
+volume_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS) -D_GNU_SOURCE
+volume_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) -lm
+endif
diff --git a/tests/examples/volume/volume.c b/tests/examples/volume/volume.c
new file mode 100644 (file)
index 0000000..5c37e54
--- /dev/null
@@ -0,0 +1,163 @@
+/* GStreamer
+ *
+ * volume.c: sample application to change the volume of a pipeline
+ *
+ * Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <math.h>
+
+#include <gst/gst.h>
+#include <gtk/gtk.h>
+
+/* global pointer for the scale widget */
+GtkWidget *elapsed;
+GtkWidget *scale;
+
+#ifndef M_LN10
+#define M_LN10 (log(10.0))
+#endif
+
+static void
+value_changed_callback (GtkWidget * widget, GstElement * volume)
+{
+  gdouble value;
+  gdouble level;
+
+  value = gtk_range_get_value (GTK_RANGE (widget));
+  level = exp (value / 20.0 * M_LN10);
+  g_print ("Value: %f dB, level: %f\n", value, level);
+  g_object_set (volume, "volume", level, NULL);
+}
+
+static void
+setup_gui (GstElement * volume)
+{
+  GtkWidget *window;
+  GtkWidget *vbox;
+  GtkWidget *label, *hbox;
+
+  window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+  g_signal_connect (window, "destroy", gtk_main_quit, NULL);
+
+  vbox = gtk_vbox_new (TRUE, 0);
+  gtk_container_add (GTK_CONTAINER (window), vbox);
+
+  /* elapsed widget */
+  hbox = gtk_hbox_new (TRUE, 0);
+  label = gtk_label_new ("Elapsed");
+  elapsed = gtk_label_new ("0.000");
+  gtk_container_add (GTK_CONTAINER (hbox), label);
+  gtk_container_add (GTK_CONTAINER (hbox), elapsed);
+  gtk_container_add (GTK_CONTAINER (vbox), hbox);
+
+  /* volume */
+  hbox = gtk_hbox_new (TRUE, 0);
+  label = gtk_label_new ("volume");
+  gtk_container_add (GTK_CONTAINER (hbox), label);
+  scale = gtk_hscale_new_with_range (-90.0, 10.0, 0.2);
+  gtk_range_set_value (GTK_RANGE (scale), 0.0);
+  gtk_widget_set_size_request (scale, 100, -1);
+  gtk_container_add (GTK_CONTAINER (hbox), scale);
+  gtk_container_add (GTK_CONTAINER (vbox), hbox);
+  g_signal_connect (scale, "value-changed",
+      G_CALLBACK (value_changed_callback), volume);
+
+  gtk_widget_show_all (GTK_WIDGET (window));
+}
+
+static void
+message_received (GstBus * bus, GstMessage * message, GstPipeline * pipeline)
+{
+  const GstStructure *s;
+
+  s = gst_message_get_structure (message);
+  g_print ("message from \"%s\" (%s): ",
+      GST_STR_NULL (GST_ELEMENT_NAME (GST_MESSAGE_SRC (message))),
+      gst_message_type_get_name (GST_MESSAGE_TYPE (message)));
+  if (s) {
+    gchar *sstr;
+
+    sstr = gst_structure_to_string (s);
+    g_print ("%s\n", sstr);
+    g_free (sstr);
+  } else {
+    g_print ("no message details\n");
+  }
+}
+
+static void
+eos_message_received (GstBus * bus, GstMessage * message,
+    GstPipeline * pipeline)
+{
+  message_received (bus, message, pipeline);
+  gtk_main_quit ();
+}
+
+int
+main (int argc, char *argv[])
+{
+
+  GstElement *pipeline = NULL;
+  GError *error = NULL;
+  GstElement *volume;
+  GstBus *bus;
+
+  gst_init (&argc, &argv);
+  gtk_init (&argc, &argv);
+
+  pipeline = gst_parse_launchv ((const gchar **) &argv[1], &error);
+  if (error) {
+    g_print ("pipeline could not be constructed: %s\n", error->message);
+    g_print ("Please give a complete pipeline  with a 'volume' element.\n");
+    g_print ("Example: audiotestsrc ! volume ! %s\n", DEFAULT_AUDIOSINK);
+    g_error_free (error);
+    return 1;
+  }
+
+  volume = gst_bin_get_by_name (GST_BIN (pipeline), "volume0");
+  if (volume == NULL) {
+    g_print ("Please give a pipeline with a 'volume' element in it\n");
+    return 1;
+  }
+
+  /* setup message handling */
+  bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
+  gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
+  g_signal_connect (bus, "message::error", (GCallback) message_received,
+      pipeline);
+  g_signal_connect (bus, "message::warning", (GCallback) message_received,
+      pipeline);
+  g_signal_connect (bus, "message::eos", (GCallback) eos_message_received,
+      pipeline);
+
+  /* setup GUI */
+  setup_gui (volume);
+
+  /* go to main loop */
+  gst_element_set_state (pipeline, GST_STATE_PLAYING);
+  gtk_main ();
+  gst_element_set_state (pipeline, GST_STATE_NULL);
+  gst_object_unref (pipeline);
+
+  return 0;
+}