From 5f22a7605a65426877ea1b586c4e877e9d025d66 Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Mon, 6 Oct 2003 10:29:27 +0000 Subject: There was a floating doubt on the way visualization is written. We use 'z' everywhere now. Both in gst-player and lib... Original commit message from CVS: There was a floating doubt on the way visualization is written. We use 'z' everywhere now. Both in gst-player and libgstplay --- gst-libs/gst/gconf/gconf.c | 17 ++++++++--------- gst-libs/gst/gconf/gconf.h | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) (limited to 'gst-libs/gst/gconf') diff --git a/gst-libs/gst/gconf/gconf.c b/gst-libs/gst/gconf/gconf.c index d5213880..2452aa7f 100644 --- a/gst-libs/gst/gconf/gconf.c +++ b/gst-libs/gst/gconf/gconf.c @@ -290,26 +290,26 @@ gst_gconf_get_default_video_src (void) } /** - * gst_gconf_get_default_visualisation_element: + * gst_gconf_get_default_visualization_element: * - * Render visualisation bin from GStreamer GConf key : "default/visualisation". - * If key is invalid goom is used as default visualisation element. + * Render visualization bin from GStreamer GConf key : "default/visualization". + * If key is invalid goom is used as default visualization element. * - * Returns: a #GstElement containing the visualisation bin, or NULL if + * Returns: a #GstElement containing the visualization bin, or NULL if * everything failed. */ GstElement * -gst_gconf_get_default_visualisation_element (void) +gst_gconf_get_default_visualization_element (void) { - GstElement *ret = gst_gconf_render_bin_from_key ("default/visualisation"); + GstElement *ret = gst_gconf_render_bin_from_key ("default/visualization"); if (!ret) { ret = gst_element_factory_make ("goom", NULL); if (!ret) - g_warning ("No GConf default visualisation plugin key and goom doesn't work"); + g_warning ("No GConf default visualization plugin key and goom doesn't work"); else - g_print ("GConf visualisation plugin not found, using goom"); + g_print ("GConf visualization plugin not found, using goom"); } return ret; @@ -329,4 +329,3 @@ GstPluginDesc plugin_desc = { "gstgconf", plugin_init }; - diff --git a/gst-libs/gst/gconf/gconf.h b/gst-libs/gst/gconf/gconf.h index 1b8a9dcc..70007f77 100644 --- a/gst-libs/gst/gconf/gconf.h +++ b/gst-libs/gst/gconf/gconf.h @@ -38,6 +38,6 @@ 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); -GstElement * gst_gconf_get_default_visualisation_element (void); +GstElement * gst_gconf_get_default_visualization_element (void); #endif /* GST_GCONF_H */ -- cgit v1.2.1