Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2020-02-20 05:43:13 +0300
committerMatthew Waters <matthew@centricular.com>2020-02-20 05:46:06 +0300
commit1326fcdbcca3dc0c4d42b53fd01f5060581e7e3b (patch)
tree9d77cbb147a1ec09ee0d8c54dd9aaab4e3a0f95f /gst/rtpmanager
parentf286f306408f7473060cd37d6692d290c81025a5 (diff)
rtpbin: fix typo setting max-dropout/misorder-time
we were setting the max-dropout-time to the value of the max-misorder-time which by default has a factor of 30 difference in value.
Diffstat (limited to 'gst/rtpmanager')
-rw-r--r--gst/rtpmanager/gstrtpbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c
index a04a157a9..24e9262e3 100644
--- a/gst/rtpmanager/gstrtpbin.c
+++ b/gst/rtpmanager/gstrtpbin.c
@@ -1783,7 +1783,7 @@ create_stream (GstRtpBinSession * session, guint32 ssrc)
if (g_object_class_find_property (jb_class, "max-dropout-time"))
g_object_set (buffer, "max-dropout-time", rtpbin->max_dropout_time, NULL);
if (g_object_class_find_property (jb_class, "max-misorder-time"))
- g_object_set (buffer, "max-dropout-time", rtpbin->max_misorder_time, NULL);
+ g_object_set (buffer, "max-misorder-time", rtpbin->max_misorder_time, NULL);
if (g_object_class_find_property (jb_class, "rfc7273-sync"))
g_object_set (buffer, "rfc7273-sync", rtpbin->rfc7273_sync, NULL);
if (g_object_class_find_property (jb_class, "max-ts-offset-adjustment"))