summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-01-04 21:39:32 +0000
committerAndy Wingo <wingo@pobox.com>2002-01-04 21:39:32 +0000
commit8e9338661ba9d77d43e53bbce3b54538606f95ee (patch)
tree4f95fad7e90bc5fd7f7479de78ea389b80edc2e8
parenteeab4c6ad203e2c7ff79454baf2dffb7bef9eb83 (diff)
downloadgst-plugins-bad-8e9338661ba9d77d43e53bbce3b54538606f95ee.tar.gz
gst-plugins-bad-8e9338661ba9d77d43e53bbce3b54538606f95ee.tar.bz2
gst-plugins-bad-8e9338661ba9d77d43e53bbce3b54538606f95ee.zip
testpod -> demo-mp3
Original commit message from CVS: testpod -> demo-mp3
-rw-r--r--gst/playondemand/Makefile.am9
-rw-r--r--gst/playondemand/demo-mp3.c86
2 files changed, 94 insertions, 1 deletions
diff --git a/gst/playondemand/Makefile.am b/gst/playondemand/Makefile.am
index fc2b93b9..4a96570a 100644
--- a/gst/playondemand/Makefile.am
+++ b/gst/playondemand/Makefile.am
@@ -7,4 +7,11 @@ libgstplayondemand_la_CFLAGS = $(GST_CFLAGS)
noinst_HEADERS = gstplayondemand.h filter.func
-# EXTRA_DIST = README
+if HAVE_GTK
+noinst_PROGRAMS = demo-mp3
+endif
+
+demo_mp3_SOURCES = demo-mp3.c
+demo_mp3_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
+demo_mp3_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
+
diff --git a/gst/playondemand/demo-mp3.c b/gst/playondemand/demo-mp3.c
new file mode 100644
index 00000000..0cfb3397
--- /dev/null
+++ b/gst/playondemand/demo-mp3.c
@@ -0,0 +1,86 @@
+#include <gtk/gtk.h>
+#include <gst/gst.h>
+
+void play (GtkButton *button, gpointer data)
+{
+ gtk_signal_emit_by_name(GTK_OBJECT(data), "play");
+}
+
+void reset (GtkButton *button, gpointer data)
+{
+ gtk_signal_emit_by_name(GTK_OBJECT(data), "reset");
+}
+
+int main(int argc, char **argv)
+{
+ guint channels;
+ GtkWidget *window, *vbox, *play_button, *reset_button, *quit_button;
+ GstElement *filesrc, *mad, *stereo2mono, *pod, *osssink, *pipeline;
+
+ gst_init (&argc, &argv);
+ gtk_init (&argc, &argv);
+
+ if (argc!=2) {
+ g_print("usage: %s <mp3-filename>\n", argv[0]);
+ exit(-1);
+ }
+
+ filesrc = gst_elementfactory_make("filesrc", "filesrc");
+ mad = gst_elementfactory_make("mad", "mad");
+ pod = gst_elementfactory_make("playondemand", "playondemand");
+ osssink = gst_elementfactory_make("osssink", "osssink");
+
+ gtk_object_set(GTK_OBJECT(filesrc), "location", argv[1], NULL);
+ gtk_object_set(GTK_OBJECT(osssink), "fragment", 0x00180008, NULL);
+ gtk_object_get(GTK_OBJECT(osssink), "channels", &channels, NULL);
+
+ pipeline = gst_pipeline_new("app");
+
+ gst_bin_add(GST_BIN(pipeline), filesrc);
+ gst_bin_add(GST_BIN(pipeline), mad);
+ gst_bin_add(GST_BIN(pipeline), pod);
+ gst_bin_add(GST_BIN(pipeline), osssink);
+
+ gst_element_connect(filesrc, "src", mad, "sink");
+ gst_element_connect(pod, "src", osssink, "sink");
+
+ if (channels != 2) {
+ gst_element_connect(mad, "src", pod, "sink");
+ } else {
+ stereo2mono = gst_elementfactory_make("stereo2mono", "stereo2mono");
+ gst_bin_add(GST_BIN(pipeline), stereo2mono);
+ gst_element_connect(mad, "src", stereo2mono, "sink");
+ gst_element_connect(stereo2mono, "src", pod, "sink");
+ }
+
+ gst_element_set_state(pipeline, GST_STATE_PLAYING);
+
+ /* initialize gui elements ... */
+ window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+ vbox = gtk_vbox_new(FALSE, 0);
+ play_button = gtk_button_new_with_label("play");
+ reset_button = gtk_button_new_with_label("reset");
+ quit_button = gtk_button_new_with_label("quit");
+
+ /* do the packing stuff ... */
+ gtk_window_set_default_size(GTK_WINDOW(window), 96, 96);
+ gtk_container_add(GTK_CONTAINER(window), vbox);
+ gtk_box_pack_start(GTK_BOX(vbox), play_button, FALSE, FALSE, 2);
+ gtk_box_pack_start(GTK_BOX(vbox), reset_button, FALSE, FALSE, 2);
+ gtk_box_pack_start(GTK_BOX(vbox), quit_button, FALSE, FALSE, 2);
+
+ /* connect things ... */
+ gtk_signal_connect(GTK_OBJECT(play_button), "clicked", play, pod);
+ gtk_signal_connect(GTK_OBJECT(reset_button), "clicked", reset, pod);
+ gtk_signal_connect(GTK_OBJECT(quit_button), "clicked", gtk_main_quit, NULL);
+
+ /* show the gui. */
+ gtk_widget_show(play_button);
+ gtk_widget_show(reset_button);
+ gtk_widget_show(quit_button);
+ gtk_widget_show(vbox);
+ gtk_widget_show(window);
+ gtk_idle_add((GtkFunction)gst_bin_iterate, pipeline);
+
+ gtk_main();
+}