Fix some wrong prototypes and funtion args

Original commit message from CVS:
Fix some wrong prototypes and funtion args
This commit is contained in:
Wim Taymans 2002-07-28 01:06:16 +00:00
parent 1975b199d2
commit e3c9576f3c
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -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;

View file

@ -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);