mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
rtpbasepayload: Remove dead twcc code
This feature was removed in 7a53fbad68
,
but this code was left behind.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1902>
This commit is contained in:
parent
e74435008f
commit
146111d7c2
2 changed files with 0 additions and 7 deletions
|
@ -35,8 +35,6 @@
|
||||||
GST_DEBUG_CATEGORY_STATIC (rtpbasepayload_debug);
|
GST_DEBUG_CATEGORY_STATIC (rtpbasepayload_debug);
|
||||||
#define GST_CAT_DEFAULT (rtpbasepayload_debug)
|
#define GST_CAT_DEFAULT (rtpbasepayload_debug)
|
||||||
|
|
||||||
static gboolean enable_experimental_twcc = FALSE;
|
|
||||||
|
|
||||||
struct _GstRTPBasePayloadPrivate
|
struct _GstRTPBasePayloadPrivate
|
||||||
{
|
{
|
||||||
gboolean ts_offset_random;
|
gboolean ts_offset_random;
|
||||||
|
@ -259,9 +257,6 @@ gst_rtp_base_payload_class_init (GstRTPBasePayloadClass * klass)
|
||||||
gobject_class = (GObjectClass *) klass;
|
gobject_class = (GObjectClass *) klass;
|
||||||
gstelement_class = (GstElementClass *) klass;
|
gstelement_class = (GstElementClass *) klass;
|
||||||
|
|
||||||
if (g_getenv ("GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY"))
|
|
||||||
enable_experimental_twcc = TRUE;
|
|
||||||
|
|
||||||
if (private_offset != 0)
|
if (private_offset != 0)
|
||||||
g_type_class_adjust_private_offset (klass, &private_offset);
|
g_type_class_adjust_private_offset (klass, &private_offset);
|
||||||
|
|
||||||
|
|
|
@ -2316,8 +2316,6 @@ rtp_basepayloading_suite (void)
|
||||||
Suite *s = suite_create ("rtp_base_payloading_test");
|
Suite *s = suite_create ("rtp_base_payloading_test");
|
||||||
TCase *tc_chain = tcase_create ("payloading tests");
|
TCase *tc_chain = tcase_create ("payloading tests");
|
||||||
|
|
||||||
g_setenv ("GST_RTP_ENABLE_EXPERIMENTAL_TWCC_PROPERTY", "1", TRUE);
|
|
||||||
|
|
||||||
tcase_set_timeout (tc_chain, 60);
|
tcase_set_timeout (tc_chain, 60);
|
||||||
|
|
||||||
suite_add_tcase (s, tc_chain);
|
suite_add_tcase (s, tc_chain);
|
||||||
|
|
Loading…
Reference in a new issue