diff options
Diffstat (limited to 'gst-libs/gst')
-rw-r--r-- | gst-libs/gst/gconf/gconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |