diff options
Diffstat (limited to 'gst-libs/gst/play/play.old.c')
-rw-r--r-- | gst-libs/gst/play/play.old.c | 12 |
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); } } |