mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtpbin: Document how to control per-SSRC retransmission
This commit is contained in:
parent
a98294f849
commit
56436ccced
1 changed files with 9 additions and 1 deletions
|
@ -2119,9 +2119,17 @@ gst_rtp_bin_class_init (GstRtpBinClass * klass)
|
||||||
"Send event downstream when a stream is synchronized to the sender",
|
"Send event downstream when a stream is synchronized to the sender",
|
||||||
DEFAULT_DO_SYNC_EVENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
DEFAULT_DO_SYNC_EVENT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstRtpBin:do-retransmission:
|
||||||
|
*
|
||||||
|
* Enables RTP retransmission on all streams. To control retransmission on
|
||||||
|
* a per-SSRC basis, connect to the #GstRtpBin::new-jitterbuffer signal and
|
||||||
|
* set the #GstRtpJitterBuffer::do-retransmission property on the
|
||||||
|
* #GstRtpJitterBuffer object instead.
|
||||||
|
*/
|
||||||
g_object_class_install_property (gobject_class, PROP_DO_RETRANSMISSION,
|
g_object_class_install_property (gobject_class, PROP_DO_RETRANSMISSION,
|
||||||
g_param_spec_boolean ("do-retransmission", "Do retransmission",
|
g_param_spec_boolean ("do-retransmission", "Do retransmission",
|
||||||
"Send an event downstream to request packet retransmission",
|
"Enable retransmission on all streams",
|
||||||
DEFAULT_DO_RETRANSMISSION,
|
DEFAULT_DO_RETRANSMISSION,
|
||||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue