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'
/* 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);