mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-01 13:49:58 +00:00
rtpjitterbuffer: fix writability of properties
This commit is contained in:
parent
d5ecd4ee2f
commit
d34184dd03
1 changed files with 4 additions and 4 deletions
|
@ -448,7 +448,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||
g_param_spec_int ("rtx-delay", "RTX Delay",
|
||||
"Extra time in ms to wait before sending retransmission "
|
||||
"event (-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_DELAY,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
/**
|
||||
* GstRtpJitterBuffer::rtx-delay-reorder:
|
||||
*
|
||||
|
@ -464,7 +464,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||
g_param_spec_int ("rtx-delay-reorder", "RTX Delay Reorder",
|
||||
"Sending retransmission event when this much reordering (-1 automatic)",
|
||||
-1, G_MAXINT, DEFAULT_RTX_DELAY_REORDER,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
/**
|
||||
* GstRtpJitterBuffer::rtx-retry-timeout:
|
||||
*
|
||||
|
@ -480,7 +480,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||
g_param_spec_int ("rtx-retry-timeout", "RTX Retry Timeout",
|
||||
"Retry sending a transmission event after this timeout in "
|
||||
"ms (-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_RETRY_TIMEOUT,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
/**
|
||||
* GstRtpJitterBuffer::rtx-retry-period:
|
||||
*
|
||||
|
@ -495,7 +495,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||
g_param_spec_int ("rtx-retry-period", "RTX Retry Period",
|
||||
"Try to get a retransmission for this many ms "
|
||||
"(-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_RETRY_PERIOD,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
* GstRtpJitterBuffer::request-pt-map:
|
||||
|
|
Loading…
Reference in a new issue