diff options
Diffstat (limited to 'gst-libs/gst/gconf')
-rw-r--r-- | gst-libs/gst/gconf/gconf.c | 17 | ||||
-rw-r--r-- | gst-libs/gst/gconf/gconf.h | 2 |
2 files changed, 9 insertions, 10 deletions
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 */ |