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:
Wonchul Lee 2019-11-12 15:19:28 +09:00
parent 78041a7748
commit 5c6314d68b

View file

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