rtpsource: fix documentation of rtp_source_send_rtp parameters

In commit 28e5f9098 (rtpbin: use PacketInfo for the sender, 2013-09-13)
the rtp_source_send_rtp signature changed but the documentation was not
adjusted to match the new one.

Update the documentation to match the function signature.
This commit is contained in:
Antonio Ospite 2019-02-28 12:32:51 +01:00
parent 38285e5bcf
commit 30db93e3a4

View file

@ -1271,12 +1271,10 @@ rtp_source_mark_bye (RTPSource * src, const gchar * reason)
/** /**
* rtp_source_send_rtp: * rtp_source_send_rtp:
* @src: an #RTPSource * @src: an #RTPSource
* @data: an RTP buffer or a list of RTP buffers * @pinfo: an #RTPPacketInfo
* @is_list: if @data is a buffer or list
* @running_time: the running time of @data
* *
* Send @data (an RTP buffer or list of buffers) originating from @src. * Send data (an RTP buffer or buffer list from @pinfo) originating from @src.
* This will make @src a sender. This function takes ownership of @data and * This will make @src a sender. This function takes ownership of the data and
* modifies the SSRC in the RTP packet to that of @src when needed. * modifies the SSRC in the RTP packet to that of @src when needed.
* *
* Returns: a #GstFlowReturn. * Returns: a #GstFlowReturn.