mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 10:38:27 +00:00
Fix some wrong prototypes and funtion args
Original commit message from CVS: Fix some wrong prototypes and funtion args
This commit is contained in:
parent
1975b199d2
commit
e3c9576f3c
3 changed files with 3 additions and 3 deletions
|
@ -111,7 +111,7 @@ static GstBuffer * gst_filesrc_get (GstPad *pad);
|
|||
static const GstFormat* gst_filesrc_get_formats (GstPad *pad);
|
||||
static gboolean gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event);
|
||||
static gboolean gst_filesrc_srcpad_query (GstPad *pad, GstPadQueryType type,
|
||||
GstSeekType *format, gint64 *value);
|
||||
GstFormat *format, gint64 *value);
|
||||
|
||||
static GstElementStateReturn gst_filesrc_change_state (GstElement *element);
|
||||
|
||||
|
|
|
@ -151,7 +151,7 @@ gst_event_new_seek (GstSeekType type, gint64 offset)
|
|||
* Returns: A new discontinuous event.
|
||||
*/
|
||||
GstEvent*
|
||||
gst_event_new_discontinuous (gboolean new_media, GstSeekType format1, ...)
|
||||
gst_event_new_discontinuous (gboolean new_media, GstFormat format1, ...)
|
||||
{
|
||||
va_list var_args;
|
||||
GstEvent *event;
|
||||
|
|
|
@ -111,7 +111,7 @@ static GstBuffer * gst_filesrc_get (GstPad *pad);
|
|||
static const GstFormat* gst_filesrc_get_formats (GstPad *pad);
|
||||
static gboolean gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event);
|
||||
static gboolean gst_filesrc_srcpad_query (GstPad *pad, GstPadQueryType type,
|
||||
GstSeekType *format, gint64 *value);
|
||||
GstFormat *format, gint64 *value);
|
||||
|
||||
static GstElementStateReturn gst_filesrc_change_state (GstElement *element);
|
||||
|
||||
|
|
Loading…
Reference in a new issue