GNOME Bugzilla – Bug 682512
rtp: make rtp packet probation configurable
Last modified: 2012-08-30 19:47:01 UTC
In some cases the default probation for RTP packets does not work. For example, a JPEG RTP stream every 4 seconds with a network latency of 150ms and a 10ms jitter always fails the probation check (may be it would work if we wait for a long time, which make it useless). This is because non of the packets received have consecutive sequence numbers (because of the jitter) and also because we might sent a few packets for the JPEG (and every few seconds).
Created attachment 222199 [details] [review] make rtp packet probation configurable This is an initial proposal to make the RTP probation configurable. A value of 0 disables the probation which can be useful in some cases.
(In reply to comment #0) > In some cases the default probation for RTP packets does not work. For example, > a JPEG RTP stream every 4 seconds with a network latency of 150ms and a 10ms > jitter always fails the probation check (may be it would work if we wait for a > long time, which make it useless). This is not totally true as it works sometimes, depending if in the 4 seconds packet set we get consecutive packets. However the problem remains as sometimes we might never get consecutive packets.
Created attachment 222203 [details] [review] make rtp packet probation configurable probation property description update.
commit 23fbc5e21ba40e9c7b80cfb7eeca38798f4668f2 Author: Aleix Conchillo Flaque <aleix@oblong.com> Date: Wed Aug 22 16:36:21 2012 -0700 rtp: make rtp packet probation configurable (bug #682512)