diff options
author | Julien Moutte <julien@moutte.net> | 2003-10-06 10:29:27 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2003-10-06 10:29:27 +0000 |
commit | 5f22a7605a65426877ea1b586c4e877e9d025d66 (patch) | |
tree | c82fa3e3c272847ec84f778d7931ad7312b9fefb /gst-libs/gst/gconf | |
parent | 554690f45ac97a83cafd50fff23c36a6f33d9645 (diff) | |
download | gst-plugins-bad-5f22a7605a65426877ea1b586c4e877e9d025d66.tar.gz gst-plugins-bad-5f22a7605a65426877ea1b586c4e877e9d025d66.tar.bz2 gst-plugins-bad-5f22a7605a65426877ea1b586c4e877e9d025d66.zip |
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
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 */ |