From 7ebd7b97d480d4047051c29ad5213791b7620f6c Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 2 Sep 2005 15:44:50 +0000 Subject: All plugins updated for element state changes. Original commit message from CVS: 2005-09-02 Andy Wingo * All plugins updated for element state changes. --- ext/pango/gsttextoverlay.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'ext/pango/gsttextoverlay.c') diff --git a/ext/pango/gsttextoverlay.c b/ext/pango/gsttextoverlay.c index c768effa..f3e3ea21 100644 --- a/ext/pango/gsttextoverlay.c +++ b/ext/pango/gsttextoverlay.c @@ -78,8 +78,7 @@ static void gst_textoverlay_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); static void gst_textoverlay_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); -static GstElementStateReturn gst_textoverlay_change_state (GstElement * - element); +static GstStateChangeReturn gst_textoverlay_change_state (GstElement * element); static void gst_textoverlay_finalize (GObject * object); @@ -606,25 +605,25 @@ gst_textoverlay_loop (GstElement * element) } -static GstElementStateReturn -gst_textoverlay_change_state (GstElement * element) +static GstStateChangeReturn +gst_textoverlay_change_state (GstElement * element, GstStateChange transition) { GstTextOverlay *overlay; overlay = GST_TEXTOVERLAY (element); - switch (GST_STATE_TRANSITION (element)) { - case GST_STATE_PAUSED_TO_PLAYING: + switch (transition) { + case GST_STATE_CHANGE_PAUSED_TO_PLAYING: break; - case GST_STATE_PLAYING_TO_PAUSED: + case GST_STATE_CHANGE_PLAYING_TO_PAUSED: break; - case GST_STATE_PAUSED_TO_READY: + case GST_STATE_CHANGE_PAUSED_TO_READY: break; } - parent_class->change_state (element); + parent_class->change_state (element, transition); - return GST_STATE_SUCCESS; + return GST_STATE_CHANGE_SUCCESS; } static void -- cgit