mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
gst/gstelement.c: make this a static function
Original commit message from CVS: * gst/gstelement.c: (gst_element_set_state_func): make this a static function
This commit is contained in:
parent
96c58fdeab
commit
66786dc6f9
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-07-22 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst/gstelement.c: (gst_element_set_state_func):
|
||||
make this a static function
|
||||
|
||||
2004-07-22 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
|
||||
|
|
|
@ -76,7 +76,7 @@ static void gst_element_error_func (GstElement * element, GstElement * source,
|
|||
GError * error, gchar * debug);
|
||||
static void gst_element_found_tag_func (GstElement * element,
|
||||
GstElement * source, const GstTagList * tag_list);
|
||||
GstElementStateReturn gst_element_set_state_func (GstElement * element,
|
||||
static GstElementStateReturn gst_element_set_state_func (GstElement * element,
|
||||
GstElementState state);
|
||||
|
||||
#ifndef GST_DISABLE_LOADSAVE
|
||||
|
@ -2735,7 +2735,7 @@ gst_element_set_state (GstElement * element, GstElementState state)
|
|||
return klass->set_state (element, state);
|
||||
}
|
||||
|
||||
GstElementStateReturn
|
||||
static GstElementStateReturn
|
||||
gst_element_set_state_func (GstElement * element, GstElementState state)
|
||||
{
|
||||
GstElementClass *oclass;
|
||||
|
|
Loading…
Reference in a new issue