mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Return the result of the parent state change call
Original commit message from CVS: Return the result of the parent state change call
This commit is contained in:
parent
49bea0bc2c
commit
8542a1f62a
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-05-10 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
||||
* ext/dv/gstdvdec.c: (gst_dvdec_change_state):
|
||||
Return the result of the parent state change call
|
||||
|
||||
2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
|
||||
|
|
|
@ -950,9 +950,7 @@ gst_dvdec_change_state (GstElement * element)
|
|||
break;
|
||||
}
|
||||
|
||||
parent_class->change_state (element);
|
||||
|
||||
return GST_STATE_SUCCESS;
|
||||
return parent_class->change_state (element);
|
||||
}
|
||||
|
||||
/* Arguments are part of the Gtk+ object system, and these functions
|
||||
|
|
Loading…
Reference in a new issue