change gst_event_new_discontinuousv to gst_event_new_discontinuous_valist

Original commit message from CVS:
change gst_event_new_discontinuousv to gst_event_new_discontinuous_valist
This commit is contained in:
David Schleef 2003-12-02 04:28:26 +00:00
parent 02ce7980b2
commit dd597cd485
2 changed files with 3 additions and 3 deletions

View file

@ -194,7 +194,7 @@ gst_event_new_seek (GstSeekType type, gint64 offset)
} }
/** /**
* gst_event_new_discontinuousv: * gst_event_new_discontinuous_valist:
* @new_media: A flag indicating a new media type starts * @new_media: A flag indicating a new media type starts
* @format1: The format of the discont value * @format1: The format of the discont value
* @var_args: more discont values and formats * @var_args: more discont values and formats
@ -207,7 +207,7 @@ gst_event_new_seek (GstSeekType type, gint64 offset)
* Returns: A new discontinuous event. * Returns: A new discontinuous event.
*/ */
GstEvent* GstEvent*
gst_event_new_discontinuousv (gboolean new_media, GstFormat format1, va_list var_args) gst_event_new_discontinuous_valist (gboolean new_media, GstFormat format1, va_list var_args)
{ {
GstEvent *event; GstEvent *event;
gint count = 0; gint count = 0;

View file

@ -215,7 +215,7 @@ GstEvent* gst_event_new_size (GstFormat format, gint64 value);
/* discontinous event */ /* discontinous event */
GstEvent* gst_event_new_discontinuous (gboolean new_media, GstEvent* gst_event_new_discontinuous (gboolean new_media,
GstFormat format1, ...); GstFormat format1, ...);
GstEvent* gst_event_new_discontinuousv (gboolean new_media, GstEvent* gst_event_new_discontinuous_valist (gboolean new_media,
GstFormat format1, GstFormat format1,
va_list var_args); va_list var_args);
gboolean gst_event_discont_get_value (GstEvent *event, GstFormat format, gint64 *value); gboolean gst_event_discont_get_value (GstEvent *event, GstFormat format, gint64 *value);