mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
Don't return SUCCESS from the state change when the parent call fails
Original commit message from CVS: Don't return SUCCESS from the state change when the parent call fails
This commit is contained in:
parent
a5d9d00f1c
commit
d3f5bc20af
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2005-01-16 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
|
* ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
|
||||||
|
Don't return state change success when the parent
|
||||||
|
failed.
|
||||||
|
|
||||||
2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2005-01-16 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* gst/avi/gstavimux.c: (gst_avimux_handle_event):
|
* gst/avi/gstavimux.c: (gst_avimux_handle_event):
|
||||||
|
|
|
@ -561,9 +561,7 @@ gst_swfdec_change_state (GstElement * element)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
||||||
|
|
||||||
return GST_STATE_SUCCESS;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue