mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
event: Fix gir warning
It fixes below gir warnings. ../subprojects/gstreamer/gst/gstevent.c:2246: Warning: Gst: gst_event_new_instant_rate_sync_time: unknown parameter 'rate_multiplier' in documentation comment, should be 'rate' ../subprojects/gstreamer/gst/gstevent.c:2296: Warning: Gst: gst_event_parse_instant_rate_sync_time: unknown parameter 'rate_multiplier' in documentation comment, should be 'rate'
This commit is contained in:
parent
78041a7748
commit
5c6314d68b
1 changed files with 2 additions and 2 deletions
|
@ -752,13 +752,13 @@ void gst_event_parse_instant_rate_change (GstEvent *event,
|
|||
/* instant-rate-change-sync-time event */
|
||||
|
||||
GST_API
|
||||
GstEvent * gst_event_new_instant_rate_sync_time (gdouble rate,
|
||||
GstEvent * gst_event_new_instant_rate_sync_time (gdouble rate_multiplier,
|
||||
GstClockTime running_time,
|
||||
GstClockTime upstream_running_time) G_GNUC_MALLOC;
|
||||
|
||||
GST_API
|
||||
void gst_event_parse_instant_rate_sync_time (GstEvent *event,
|
||||
gdouble *rate,
|
||||
gdouble *rate_multiplier,
|
||||
GstClockTime *running_time,
|
||||
GstClockTime *upstream_running_time);
|
||||
|
||||
|
|
Loading…
Reference in a new issue