1 /* GStreamer
2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19 #include <gst/gst.h>
20
21 static GMainLoop *loop;
22
23 static void
error_eos_cb(GstBus * bus,GstMessage * msg,GMainLoop * main_loop)24 error_eos_cb (GstBus * bus, GstMessage * msg, GMainLoop * main_loop)
25 {
26 g_main_loop_quit (main_loop);
27 }
28
29 gint
main(gint argc,gchar * argv[])30 main (gint argc, gchar * argv[])
31 {
32 GstElement *player;
33 GstStateChangeReturn res;
34 GstBus *bus;
35
36 gst_init (&argc, &argv);
37
38 player = gst_element_factory_make ("playbin", "player");
39 g_assert (player);
40
41 g_object_set (G_OBJECT (player), "uri", argv[1], NULL);
42
43 loop = g_main_loop_new (NULL, TRUE);
44 bus = gst_pipeline_get_bus (GST_PIPELINE (player));
45 gst_bus_add_signal_watch (bus);
46
47 g_signal_connect (bus, "message::eos", G_CALLBACK (error_eos_cb), loop);
48 g_signal_connect (bus, "message::error", G_CALLBACK (error_eos_cb), loop);
49
50 res = gst_element_set_state (player, GST_STATE_PLAYING);
51 if (res == GST_STATE_CHANGE_FAILURE) {
52 g_print ("could not play\n");
53 return -1;
54 }
55
56 g_main_loop_run (loop);
57
58 return 0;
59 }
60