mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
rtpbasepayload: place twcc-ext-id behind environment variable
Adding properties for each and every rtp header extension is not scalable and a new interface will be implemented for the general case (https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/777). Set the environment variable "GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY" to any value to reenable the short-lived twcc-ext-id property. Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/761 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/756>
This commit is contained in:
parent
cb6edaf6f8
commit
a1e9f4e37b
2 changed files with 23 additions and 10 deletions
|
@ -34,6 +34,8 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (rtpbasepayload_debug);
|
||||
#define GST_CAT_DEFAULT (rtpbasepayload_debug)
|
||||
|
||||
static gboolean enable_experimental_twcc = FALSE;
|
||||
|
||||
struct _GstRTPBasePayloadPrivate
|
||||
{
|
||||
gboolean ts_offset_random;
|
||||
|
@ -201,6 +203,9 @@ gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass)
|
|||
gobject_class = (GObjectClass *) klass;
|
||||
gstelement_class = (GstElementClass *) klass;
|
||||
|
||||
if (g_getenv ("GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY"))
|
||||
enable_experimental_twcc = TRUE;
|
||||
|
||||
if (private_offset != 0)
|
||||
g_type_class_adjust_private_offset (klass, &private_offset);
|
||||
|
||||
|
@ -352,10 +357,14 @@ gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass)
|
|||
* To use this across multiple bundled streams (transport wide), the
|
||||
* GstRTPFunnel can mux TWCC sequence-numbers together.
|
||||
*
|
||||
* This is experimental, as it is still a draft and not yet a standard.
|
||||
* This is experimental and requires setting the
|
||||
* 'GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY' environment variable as it is
|
||||
* still a draft and not yet a standard. This property may also be removed
|
||||
* in the future for 1.20.
|
||||
*
|
||||
* Since: 1.18
|
||||
*/
|
||||
if (enable_experimental_twcc) {
|
||||
g_object_class_install_property (gobject_class, PROP_TWCC_EXT_ID,
|
||||
g_param_spec_uint ("twcc-ext-id",
|
||||
"Transport-wide Congestion Control Extension ID (experimental)",
|
||||
|
@ -363,6 +372,7 @@ gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass)
|
|||
"Transport-wide Congestion Control sequencenumbers (0 = disable)",
|
||||
0, 15, DEFAULT_TWCC_EXT_ID,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
}
|
||||
|
||||
/**
|
||||
* GstRTPBasePayload:scale-rtptime:
|
||||
|
@ -1163,7 +1173,7 @@ gst_rtp_base_payload_negotiate (GstRTPBasePayload * payload)
|
|||
update_max_ptime (payload);
|
||||
|
||||
|
||||
if (payload->priv->twcc_ext_id > 0) {
|
||||
if (enable_experimental_twcc && payload->priv->twcc_ext_id > 0) {
|
||||
/* TODO: put this as a separate utility-function for RTP extensions */
|
||||
gchar *name = g_strdup_printf ("extmap-%u", payload->priv->twcc_ext_id);
|
||||
gst_caps_set_simple (srccaps, name, G_TYPE_STRING,
|
||||
|
@ -1261,6 +1271,7 @@ set_headers (GstBuffer ** buffer, guint idx, gpointer user_data)
|
|||
gst_rtp_buffer_set_payload_type (&rtp, data->pt);
|
||||
gst_rtp_buffer_set_seq (&rtp, data->seqnum);
|
||||
gst_rtp_buffer_set_timestamp (&rtp, data->rtptime);
|
||||
if (enable_experimental_twcc)
|
||||
_set_twcc_seq (&rtp, data->seqnum, data->twcc_ext_id);
|
||||
gst_rtp_buffer_unmap (&rtp);
|
||||
|
||||
|
|
|
@ -2022,6 +2022,8 @@ rtp_basepayloading_suite (void)
|
|||
Suite *s = suite_create ("rtp_base_payloading_test");
|
||||
TCase *tc_chain = tcase_create ("payloading tests");
|
||||
|
||||
g_setenv ("GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY", "1", TRUE);
|
||||
|
||||
tcase_set_timeout (tc_chain, 60);
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
|
|
Loading…
Reference in a new issue