From: Olivier CrĂȘte Date: Fri, 24 May 2019 14:31:39 +0000 (-0400) Subject: rtpjitterbuffer: max-dropout-time gets cast to int32 X-Git-Tag: 1.16.2~26 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fgst-plugins-good.git;a=commitdiff_plain;h=fee4cf452376ba5c54923cc2fe1d00804f48437d rtpjitterbuffer: max-dropout-time gets cast to int32 So any value over MAXINT32 gets considered as negative and is silently ignored. --- diff --git a/gst/rtpmanager/gstrtpjitterbuffer.c b/gst/rtpmanager/gstrtpjitterbuffer.c index 1bd3668..e8b636f 100644 --- a/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/gst/rtpmanager/gstrtpjitterbuffer.c @@ -784,7 +784,7 @@ gst_rtp_jitter_buffer_class_init (GstRtpJitterBufferClass * klass) g_object_class_install_property (gobject_class, PROP_MAX_DROPOUT_TIME, g_param_spec_uint ("max-dropout-time", "Max dropout time", "The maximum time (milliseconds) of missing packets tolerated.", - 0, G_MAXUINT, DEFAULT_MAX_DROPOUT_TIME, + 0, G_MAXINT32, DEFAULT_MAX_DROPOUT_TIME, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_MAX_MISORDER_TIME,