summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2004-03-03 11:41:50 +0000
committerJulien Moutte <julien@moutte.net>2004-03-03 11:41:50 +0000
commitc7c5c0a9d0b351293b4e19273c407aa6633c559c (patch)
tree63479cdd77473fb899cf79e8d04b2079803b43de
parentdf32a5960fda190e7bc95c1c648fae8d55b734cb (diff)
downloadgst-plugins-bad-c7c5c0a9d0b351293b4e19273c407aa6633c559c.tar.gz
gst-plugins-bad-c7c5c0a9d0b351293b4e19273c407aa6633c559c.tar.bz2
gst-plugins-bad-c7c5c0a9d0b351293b4e19273c407aa6633c559c.zip
gst-libs/gst/gconf/gconf.c: Using ximagesink as a default if no gconf key found. We should probably consider using al...
Original commit message from CVS: 2004-03-03 Julien MOUTTE <julien@moutte.net> * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink): Using ximagesink as a default if no gconf key found. We should probably consider using alsasink instead of osssink for the audio part.
-rw-r--r--ChangeLog7
-rw-r--r--gst-libs/gst/gconf/gconf.c6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5280c44a..edf102cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-03-03 Julien MOUTTE <julien@moutte.net>
+
+ * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
+ Using ximagesink as a default if no gconf key found. We should
+ probably consider using alsasink instead of osssink for the audio
+ part.
+
2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:
diff --git a/gst-libs/gst/gconf/gconf.c b/gst-libs/gst/gconf/gconf.c
index ba30a894..a96b786f 100644
--- a/gst-libs/gst/gconf/gconf.c
+++ b/gst-libs/gst/gconf/gconf.c
@@ -231,12 +231,12 @@ gst_gconf_get_default_video_sink (void)
GstElement *ret = gst_gconf_render_bin_from_key ("default/videosink");
if (!ret) {
- ret = gst_element_factory_make ("xvideosink", NULL);
+ ret = gst_element_factory_make ("ximagesink", NULL);
if (!ret)
- g_warning ("No GConf default video sink key and xvideosink doesn't work");
+ g_warning ("No GConf default video sink key and ximagesink doesn't work");
else
- g_print ("GConf video sink not found, using xvideosink\n");
+ g_print ("GConf video sink not found, using ximagesink\n");
}
return ret;