Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Thomas Vander Stichele <thomasvs@us...> - 2002-07-04 16:55:41
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Thu Jul 04 2002 09:55:40 PDT Branch: BRANCH-RELEASE-0_4_0 Log message: -j fix Modified files: gst-libs/gst/gconf: Makefile.am Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am.diff?r1=1.1&r2=1.1.2.1 ====Begin Diffs==== Index: Makefile.am =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -d -r1.1 -r1.1.2.1 --- Makefile.am 1 Jul 2002 15:39:58 -0000 1.1 +++ Makefile.am 4 Jul 2002 16:55:28 -0000 1.1.2.1 @@ -10,7 +10,7 @@ noinst_PROGRAMS = test-gconf test_gconf_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) -test_gconf_LDADD = $(GST_LIBS) $(GCONF_LIBS) -lgstgconf +test_gconf_LDADD = $(GST_LIBS) $(GCONF_LIBS) libgstgconf.la libgstgconf_la_LIBADD = $(GCONF_LIBS) libgstgconf_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) |
From: Thomas Vander Stichele <thomasvs@us...> - 2002-07-12 09:41:40
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Fri Jul 12 2002 02:41:37 PDT Log message: api changes and render/ghost functions Modified files: gst-libs/gst/gconf: Makefile.am gconf.c gconf.h Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am.diff?r1=1.2&r2=1.3 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c.diff?r1=1.1&r2=1.2 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.h.diff?r1=1.1&r2=1.2 ====Begin Diffs==== Index: Makefile.am =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 9 Jul 2002 10:45:37 -0000 1.2 +++ Makefile.am 12 Jul 2002 09:41:25 -0000 1.3 @@ -1,4 +1,4 @@ -librarydir = $(prefix)/lib/gst +librarydir = $(prefix)/lib library_LTLIBRARIES = libgstgconf.la Index: gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gconf.c 1 Jul 2002 15:39:58 -0000 1.1 +++ gconf.c 12 Jul 2002 09:41:25 -0000 1.2 @@ -19,6 +19,44 @@ return _gst_gconf_client; } +/* go through a bin, finding the one pad that is unconnected in the given + * * direction, and return that pad */ +GstPad * +gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction) +{ + GstPad *pad = NULL; + GList *elements = NULL; + GList *pads = NULL; + GstElement *element = NULL; + + g_print ("DEBUG: find_unconnected start\n"); + elements = (GList *) gst_bin_get_list (bin); + /* traverse all elements looking for unconnected pads */ + while (elements && pad == NULL) + { + element = GST_ELEMENT (elements->data); + g_print ("DEBUG: looking in element %s\n", gst_element_get_name (element)); + pads = gst_element_get_pad_list (element); + while (pads) + { + /* check if the direction matches */ + if (GST_PAD_DIRECTION (GST_PAD (pads->data)) == direction) + { + if (GST_PAD_PEER (GST_PAD (pads->data)) == NULL) + { + /* found it ! */ + g_print ("DEBUG: found an unconnected pad !\n"); + pad = GST_PAD (pads->data); + } + } + if (pad) break; /* found one already */ + pads = g_list_next (pads); + } + elements = g_list_next (elements); + } + g_print ("DEBUG: find_unconnected stop\n"); + return pad; +} /* external functions */ @@ -47,27 +85,47 @@ gconf_client_set_string (gst_gconf_get_client (), key, value, NULL); } -gboolean -gst_gconf_render_bin (const gchar *key, GstElement **element) +/* this function renders the given description to a bin, + * and ghosts at most one unconnected src pad and one unconnected sink pad */ +GstElement * +gst_gconf_render_bin_from_description (const gchar *description) { - GstElement *bin; - gchar *pipeline; + GstElement *bin = NULL; + GstPad *pad = NULL; GError *error = NULL; - gchar *value = NULL; - - value = gst_gconf_get_string (key); - pipeline = g_strdup_printf ("bin.( %s )", value); - bin = GST_ELEMENT (gst_parse_launch (pipeline, &error)); + /* parse the pipeline */ + bin = GST_ELEMENT (gst_parse_launch (description, &error)); if (error) { g_print ("DEBUG: gstgconf: error parsing pipeline %s\n%s\n", - pipeline, error->message); + description, error->message); g_error_free (error); - return FALSE; + return NULL; } - *element = bin; - return TRUE; + + /* find pads and ghost them if necessary */ + if ((pad = gst_bin_find_unconnected_pad (GST_BIN (bin), GST_PAD_SRC))) + gst_element_add_ghost_pad (bin, pad, "src"); + if ((pad = gst_bin_find_unconnected_pad (GST_BIN (bin), GST_PAD_SINK))) + gst_element_add_ghost_pad (bin, pad, "sink"); + return bin; +} + +/* this function reads the gconf key, parses the pipeline bit to a bin, + * and ghosts at most one unconnected src pad and one unconnected sink pad */ +GstElement * +gst_gconf_render_bin_from_key (const gchar *key) +{ + GstElement *bin; + gchar *description; + gchar *value = NULL; + + value = gst_gconf_get_string (key); + description = g_strdup_printf ("bin.( %s )", value); + bin = gst_gconf_render_bin_from_description (description); + g_free (description); + return bin; } /* Index: gconf.h =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gconf.h 1 Jul 2002 15:39:58 -0000 1.1 +++ gconf.h 12 Jul 2002 09:41:25 -0000 1.2 @@ -12,8 +12,8 @@ void gst_gconf_set_string (const gchar *key, const gchar *value); -gboolean gst_gconf_render_bin (const gchar *key, - GstElement **element); +GstElement * gst_gconf_render_bin_from_key (const gchar *key); +GstElement * gst_gconf_render_bin_from_description (const gchar *description); /* guint gst_gconf_notify_add (const gchar *key, |
From: Thomas Vander Stichele <thomasvs@us...> - 2002-07-12 13:41:07
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Fri Jul 12 2002 06:41:06 PDT Log message: parse to BIN dumbass Modified files: gst-libs/gst/gconf: gconf.c Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c.diff?r1=1.2&r2=1.3 ====Begin Diffs==== Index: gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gconf.c 12 Jul 2002 09:41:25 -0000 1.2 +++ gconf.c 12 Jul 2002 13:40:53 -0000 1.3 @@ -93,9 +93,12 @@ GstElement *bin = NULL; GstPad *pad = NULL; GError *error = NULL; + gchar *desc = NULL; - /* parse the pipeline */ - bin = GST_ELEMENT (gst_parse_launch (description, &error)); + /* parse the pipeline to a bin */ + desc = g_strdup_printf ("bin.( %s )", description); + bin = GST_ELEMENT (gst_parse_launch (desc, &error)); + g_free (desc); if (error) { g_print ("DEBUG: gstgconf: error parsing pipeline %s\n%s\n", |
From: Thomas Vander Stichele <thomasvs@us...> - 2002-10-25 17:35:44
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Fri Oct 25 2002 07:31:28 PDT Log message: a no-brainer addition Modified files: gst-libs/gst/gconf: gconf.c gconf.h test-gconf.c Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c.diff?r1=1.7&r2=1.8 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.h.diff?r1=1.3&r2=1.4 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/test-gconf.c.diff?r1=1.2&r2=1.3 ====Begin Diffs==== Index: gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- gconf.c 16 Oct 2002 19:47:05 -0000 1.7 +++ gconf.c 25 Oct 2002 14:31:15 -0000 1.8 @@ -167,6 +167,40 @@ return ret; } +GstElement * +gst_gconf_get_default_audio_src (void) +{ + GstElement *ret = gst_gconf_render_bin_from_key ("default/audiosrc"); + + if (!ret) { + ret = gst_element_factory_make ("osssrc", NULL); + + if (!ret) + g_warning ("No GConf default audio src key and osssrc doesn't work"); + else + g_warning ("GConf audio src not found, using osssrc"); + } + + return ret; +} + +GstElement * +gst_gconf_get_default_video_src (void) +{ + GstElement *ret = gst_gconf_render_bin_from_key ("default/videosrc"); + + if (!ret) { + ret = gst_element_factory_make ("videotestsrc", NULL); + + if (!ret) + g_warning ("No GConf default video src key and videotestrc doesn't work"); + else + g_warning ("GConf video src not found, using videotestrc"); + } + + return ret; +} + static gboolean plugin_init (GModule *module, GstPlugin *plugin) { Index: gconf.h =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gconf.h 16 Oct 2002 19:47:05 -0000 1.3 +++ gconf.h 25 Oct 2002 14:31:15 -0000 1.4 @@ -17,6 +17,8 @@ GstElement * gst_gconf_get_default_video_sink (void); GstElement * gst_gconf_get_default_audio_sink (void); +GstElement * gst_gconf_get_default_video_src (void); +GstElement * gst_gconf_get_default_audio_src (void); /* guint gst_gconf_notify_add (const gchar *key, Index: test-gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/test-gconf.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- test-gconf.c 2 Jul 2002 03:29:21 -0000 1.2 +++ test-gconf.c 25 Oct 2002 14:31:15 -0000 1.3 @@ -7,5 +7,9 @@ gst_gconf_get_string ("default/videosink")); printf ("Default audio sink : %s\n", gst_gconf_get_string ("default/audiosink")); + printf ("Default video src : %s\n", + gst_gconf_get_string ("default/videosrc")); + printf ("Default audio src : %s\n", + gst_gconf_get_string ("default/audiosrc")); return 0; } |
From: Thomas Vander Stichele <thomasvs@us...> - 2002-11-20 12:16:05
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Wed Nov 20 2002 04:16:02 PST Log message: some fixes, suggestion by thaytan to make _get and _set work similar Modified files: gst-libs/gst/gconf: gconf.c Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c.diff?r1=1.8&r2=1.9 ====Begin Diffs==== Index: gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gconf.c 25 Oct 2002 14:31:15 -0000 1.8 +++ gconf.c 20 Nov 2002 12:15:49 -0000 1.9 @@ -62,23 +62,34 @@ { GError *error = NULL; gchar *value = NULL; - gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key); + gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key); value = gconf_client_get_string (gst_gconf_get_client (), full_key, &error); g_free (full_key); - if (value) - return value; - else - return NULL; - // this is a good idea: return g_strdup (default_val); + if (error) + { + g_warning ("gst_gconf_get_string: error: %s\n", error->message); + g_error_free (error); + } + /* FIXME: decide if we want to strdup this value; if we do, check for NULL */ + return value; } void gst_gconf_set_string (const gchar *key, const gchar *value) { - gconf_client_set_string (gst_gconf_get_client (), key, value, NULL); + GError *error = NULL; + gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key); + + gconf_client_set_string (gst_gconf_get_client (), full_key, value, &error); + if (error) + { + g_warning ("gst_gconf_set_string: error: %s\n", error->message); + g_error_free (error); + } + g_free (full_key); } /* this function renders the given description to a bin, |
From: Thomas Vander Stichele <thomasvs@us...> - 2003-01-27 15:20:23
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Mon Jan 27 2003 07:20:16 PST Branch: BRANCH-GSTREAMER-0_6 Log message: adding pc files for gconf Modified files: gst-libs/gst/gconf: Makefile.am Added files: gst-libs/gst/gconf: gstreamer-gconf-uninstalled.pc.in gstreamer-gconf.pc.in Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am.diff?r1=1.5&r2=1.5.8.1 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in?rev=1.1.2.1&content-type=text/vnd.viewcvs-markup http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gstreamer-gconf.pc.in?rev=1.1.2.1&content-type=text/vnd.viewcvs-markup ====Begin Diffs==== Index: Makefile.am =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am,v retrieving revision 1.5 retrieving revision 1.5.8.1 diff -u -d -r1.5 -r1.5.8.1 --- Makefile.am 8 Dec 2002 14:50:01 -0000 1.5 +++ Makefile.am 27 Jan 2003 15:20:02 -0000 1.5.8.1 @@ -15,3 +15,5 @@ libgstgconf_@...@_la_LIBADD = $(GCONF_LIBS) libgstgconf_@...@_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) libgstgconf_@...@_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@ + +EXTRA_DIST = gstreamer-gconf.pc.in gstreamer-gconf-uninstalled.pc.in --- NEW FILE: gstreamer-gconf-uninstalled.pc.in --- # the standard variables don't make sense for an uninstalled copy prefix= exec_prefix= libdir=${pcfiledir} includedir=${pcfiledir} Name: GStreamer GConf Library, uninstalled Description: Streaming media framework, GConf support library, not installed Requires: gstreamer >= @VERSION@ Version: @VERSION@ Libs: ${pcfiledir}/libgstgconf-@...@.la Cflags: -I${pcfiledir}/../.. --- NEW FILE: gstreamer-gconf.pc.in --- prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@/gstreamer-@...@ Name: GStreamer GConf Library Description: Streaming media framework, GConf support library Requires: gstreamer-@...@ Version: @VERSION@ Libs: -L${libdir} -lgstgconf-@...@ Cflags: -I${includedir} |
From: Thomas Vander Stichele <thomasvs@us...> - 2003-01-27 15:21:18
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Mon Jan 27 2003 07:21:18 PST Branch: BRANCH-GSTREAMER-0_6 Log message: this is better Modified files: gst-libs/gst/gconf: gstreamer-gconf-uninstalled.pc.in Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in.diff?r1=1.1.2.1&r2=1.1.2.2 ====Begin Diffs==== Index: gstreamer-gconf-uninstalled.pc.in =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/Attic/gstreamer-gconf-uninstalled.pc.in,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- gstreamer-gconf-uninstalled.pc.in 27 Jan 2003 15:20:02 -0000 1.1.2.1 +++ gstreamer-gconf-uninstalled.pc.in 27 Jan 2003 15:21:05 -0000 1.1.2.2 @@ -9,5 +9,5 @@ Requires: gstreamer >= @VERSION@ Version: @VERSION@ -Libs: ${pcfiledir}/libgstgconf-@...@.la -Cflags: -I${pcfiledir}/../.. +Libs: ${pcfiledir}/gst-libs/gst/gconf/libgstgconf-@...@.la +Cflags: -I${pcfiledir}/gst-libs |
From: Thomas Vander Stichele <thomasvs@us...> - 2003-04-27 15:20:21
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Sun Apr 27 2003 08:20:20 PDT Log message: more uninstalled fixes Modified files: gst-libs/gst/gconf: Makefile.am gstreamer-gconf-uninstalled.pc.in Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am.diff?r1=1.7&r2=1.8 http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in.diff?r1=1.2&r2=1.3 ====Begin Diffs==== Index: Makefile.am =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.am 7 Apr 2003 21:34:30 -0000 1.7 +++ Makefile.am 27 Apr 2003 15:20:06 -0000 1.8 @@ -16,4 +16,6 @@ libgstgconf_@...@_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) libgstgconf_@...@_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@ +CLEANFILES = gstreamer-gconf.pc gstreamer-gconf-uninstalled.pc + EXTRA_DIST = gstreamer-gconf.pc.in gstreamer-gconf-uninstalled.pc.in Index: gstreamer-gconf-uninstalled.pc.in =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gstreamer-gconf-uninstalled.pc.in 7 Apr 2003 21:34:30 -0000 1.2 +++ gstreamer-gconf-uninstalled.pc.in 27 Apr 2003 15:20:07 -0000 1.3 @@ -9,5 +9,5 @@ Requires: gstreamer >= @VERSION@ Version: @VERSION@ -Libs: ${pcfiledir}/gst-libs/gst/gconf/libgstgconf-@...@.la -Cflags: -I${pcfiledir}/gst-libs +Libs: ${pcfiledir}/../gst-libs/gst/gconf/libgstgconf-@...@.la +Cflags: -I${pcfiledir}/../gst-libs |
From: Thomas Vander Stichele <thomasvs@us...> - 2003-05-29 17:10:18
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Thu May 29 2003 10:01:08 PDT Log message: don't warn on recoverable problems Modified files: gst-libs/gst/gconf: gconf.c Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c.diff?r1=1.10&r2=1.11 ====Begin Diffs==== Index: gconf.c =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/gconf.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- gconf.c 29 Mar 2003 19:48:38 -0000 1.10 +++ gconf.c 29 May 2003 17:00:55 -0000 1.11 @@ -78,7 +78,7 @@ if (error) { - g_warning ("gst_gconf_get_string: error: %s\n", error->message); + g_print ("gst_gconf_get_string: error: %s\n", error->message); g_error_free (error); } /* FIXME: decide if we want to strdup this value; if we do, check for NULL */ @@ -101,7 +101,7 @@ gconf_client_set_string (gst_gconf_get_client (), full_key, value, &error); if (error) { - g_warning ("gst_gconf_set_string: error: %s\n", error->message); + g_print ("gst_gconf_set_string: error: %s\n", error->message); g_error_free (error); } g_free (full_key); @@ -185,7 +185,7 @@ if (!ret) g_warning ("No GConf default audio sink key and osssink doesn't work"); else - g_warning ("GConf audio sink not found, using osssink"); + g_print ("GConf audio sink not found, using osssink"); } return ret; @@ -211,7 +211,7 @@ if (!ret) g_warning ("No GConf default video sink key and xvideosink doesn't work"); else - g_warning ("GConf video sink not found, using xvideosink"); + g_print ("GConf video sink not found, using xvideosink"); } return ret; @@ -237,7 +237,7 @@ if (!ret) g_warning ("No GConf default audio src key and osssrc doesn't work"); else - g_warning ("GConf audio src not found, using osssrc"); + g_print ("GConf audio src not found, using osssrc"); } return ret; @@ -264,7 +264,7 @@ if (!ret) g_warning ("No GConf default video src key and videotestrc doesn't work"); else - g_warning ("GConf video src not found, using videotestrc"); + g_print ("GConf video src not found, using videotestrc"); } return ret; @@ -290,7 +290,7 @@ if (!ret) g_warning ("No GConf default visualisation plugin key and goom doesn't work"); else - g_warning ("GConf visualisation plugin not found, using goom"); + g_print ("GConf visualisation plugin not found, using goom"); } return ret; |
From: Thomas Vander Stichele <thomasvs@us...> - 2003-06-27 23:37:42
|
CVS Root: /cvsroot/gstreamer Module: gst-plugins Changes by: thomasvs Date: Fri Jun 27 2003 16:37:40 PDT Branch: BRANCH-GSTREAMER-0_6 Log message: ignore Modified files: gst-libs/gst/gconf: .cvsignore Links: http://cvs.sf.net/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins/gst-libs/gst/gconf/.cvsignore.diff?r1=1.1&r2=1.1.6.1 ====Begin Diffs==== Index: .cvsignore =================================================================== RCS file: /cvsroot/gstreamer/gst-plugins/gst-libs/gst/gconf/.cvsignore,v retrieving revision 1.1 retrieving revision 1.1.6.1 diff -u -d -r1.1 -r1.1.6.1 --- .cvsignore 31 Dec 2002 18:14:07 -0000 1.1 +++ .cvsignore 27 Jun 2003 23:37:27 -0000 1.1.6.1 @@ -1 +1,2 @@ test-gconf +gstreamer-gconf*.pc |