rtpjitterbuffer: fix writability of properties
This commit is contained in:
parent
d5ecd4ee2f
commit
d34184dd03
@ -448,7 +448,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass)
|
|||||||
g_param_spec_int ("rtx-delay", "RTX Delay",
|
g_param_spec_int ("rtx-delay", "RTX Delay",
|
||||||
"Extra time in ms to wait before sending retransmission "
|
"Extra time in ms to wait before sending retransmission "
|
||||||
"event (-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_DELAY,
|
"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:
|
* 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",
|
g_param_spec_int ("rtx-delay-reorder", "RTX Delay Reorder",
|
||||||
"Sending retransmission event when this much reordering (-1 automatic)",
|
"Sending retransmission event when this much reordering (-1 automatic)",
|
||||||
-1, G_MAXINT, DEFAULT_RTX_DELAY_REORDER,
|
-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:
|
* 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",
|
g_param_spec_int ("rtx-retry-timeout", "RTX Retry Timeout",
|
||||||
"Retry sending a transmission event after this timeout in "
|
"Retry sending a transmission event after this timeout in "
|
||||||
"ms (-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_RETRY_TIMEOUT,
|
"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:
|
* 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",
|
g_param_spec_int ("rtx-retry-period", "RTX Retry Period",
|
||||||
"Try to get a retransmission for this many ms "
|
"Try to get a retransmission for this many ms "
|
||||||
"(-1 automatic)", -1, G_MAXINT, DEFAULT_RTX_RETRY_PERIOD,
|
"(-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:
|
* GstRtpJitterBuffer::request-pt-map:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user