From: Thomas Vander Stichele Date: Tue, 13 Apr 2004 13:41:20 +0000 (+0000) Subject: make player example use gconf X-Git-Tag: 1.19.3~505^2~3635 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec3b63b4ef64a4aae193dd4ec30bcf469a5f7f86;p=platform%2Fupstream%2Fgstreamer.git make player example use gconf Original commit message from CVS: make player example use gconf --- diff --git a/ChangeLog b/ChangeLog index 5ac8f61..1ca7728 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2004-04-13 Thomas Vander Stichele + * examples/gstplay/Makefile.am: + * examples/gstplay/player.c: (main): + make the commandline player example use gconf settings + +2004-04-13 Thomas Vander Stichele + * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init), (gst_cacasink_sinkconnect), (gst_cacasink_init), (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close): diff --git a/examples/gstplay/Makefile.am b/examples/gstplay/Makefile.am index 795fc36..cbae9cb 100644 --- a/examples/gstplay/Makefile.am +++ b/examples/gstplay/Makefile.am @@ -2,9 +2,10 @@ noinst_PROGRAMS = player player_SOURCES = player.c -player_CFLAGS = $(GST_CFLAGS) +player_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) player_LDFLAGS = \ $(GST_LIBS) \ + $(top_builddir)/gst-libs/gst/gconf/libgstgconf-@GST_MAJORMINOR@.la \ $(top_builddir)/gst-libs/gst/play/libgstplay-@GST_MAJORMINOR@.la \ $(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la diff --git a/examples/gstplay/player.c b/examples/gstplay/player.c index 92cb9bc..4258d64 100644 --- a/examples/gstplay/player.c +++ b/examples/gstplay/player.c @@ -18,6 +18,7 @@ */ #include +#include static GMainLoop *loop = NULL; static gint64 length = 0; @@ -121,11 +122,17 @@ main (int argc, char *argv[]) } /* Getting default audio and video plugins from GConf */ - audio_sink = gst_element_factory_make ("osssink", "audio_sink"); - video_sink = gst_element_factory_make ("ximagesink", "video_sink"); vis_element = gst_element_factory_make ("goom", "vis_element"); data_src = gst_element_factory_make ("gnomevfssrc", "source"); + audio_sink = gst_gconf_get_default_audio_sink (); + if (!GST_IS_ELEMENT (audio_sink)) + g_error ("Could not get default audio sink from GConf"); + video_sink = gst_gconf_get_default_video_sink (); + if (!GST_IS_ELEMENT (video_sink)) + g_error ("Could not get default video sink from GConf"); + + /* Let's send them to GstPlay object */ if (!gst_play_set_audio_sink (play, audio_sink)) g_warning ("Could not set audio sink"); @@ -158,7 +165,7 @@ main (int argc, char *argv[]) /* Change state to PLAYING */ if (gst_element_set_state (GST_ELEMENT (play), GST_STATE_PLAYING) == GST_STATE_FAILURE) - g_warning ("Could not set state to PLAYING"); + g_error ("Could not set state to PLAYING"); g_idle_add ((GSourceFunc) idle_iterate, play); g_timeout_add (20000, (GSourceFunc) seek_timer, play);