summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/play/play.old.c
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2003-10-06 10:29:27 +0000
committerJulien Moutte <julien@moutte.net>2003-10-06 10:29:27 +0000
commit5f22a7605a65426877ea1b586c4e877e9d025d66 (patch)
treec82fa3e3c272847ec84f778d7931ad7312b9fefb /gst-libs/gst/play/play.old.c
parent554690f45ac97a83cafd50fff23c36a6f33d9645 (diff)
downloadgst-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/play/play.old.c')
-rw-r--r--gst-libs/gst/play/play.old.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gst-libs/gst/play/play.old.c b/gst-libs/gst/play/play.old.c
index bcd04beb..486262e5 100644
--- a/gst-libs/gst/play/play.old.c
+++ b/gst-libs/gst/play/play.old.c
@@ -746,7 +746,7 @@ gst_play_seek_to_time (GstPlay * play, gint64 time_nanos)
guint8 prev_state;
gboolean audio_seek_worked = FALSE;
gboolean video_seek_worked = FALSE;
- gboolean visualisation_seek_worked = FALSE;
+ gboolean visualization_seek_worked = FALSE;
g_return_if_fail (play != NULL);
g_return_if_fail (GST_IS_PLAY (play));
@@ -777,11 +777,11 @@ gst_play_seek_to_time (GstPlay * play, gint64 time_nanos)
audio_seek_worked =
gst_element_send_event (play->audio_sink_element, s_event);
}
- if (play->visualisation_sink_element != NULL)
+ if (play->visualization_sink_element != NULL)
{
gst_event_ref (s_event);
- visualisation_seek_worked =
- gst_element_send_event (play->visualisation_sink_element, s_event);
+ visualization_seek_worked =
+ gst_element_send_event (play->visualization_sink_element, s_event);
}
if (play->video_sink_element != NULL)
{
@@ -817,9 +817,9 @@ gst_play_need_new_video_window (GstPlay * play)
g_object_set (G_OBJECT (play->video_sink_element),
"need_new_window", TRUE, NULL);
}
- if (GST_IS_ELEMENT (play->visualisation_sink_element))
+ if (GST_IS_ELEMENT (play->visualization_sink_element))
{
- g_object_set (G_OBJECT (play->visualisation_sink_element),
+ g_object_set (G_OBJECT (play->visualization_sink_element),
"need_new_window", TRUE, NULL);
}
}