GNOME Bugzilla – Bug 683065
rtp: probation not disable if rtcp packet received
Last modified: 2012-08-30 20:11:54 UTC
There's two ways to consider a source valid: probation (by checking consecutive sequence numbers) or when a valid RTCP packet is received, which disables probation. Currently, both ways are implemented, however probation is only disable when RTCP packet is received when the source is new.
Created attachment 222989 [details] [review] disable probation whenever an rtcp packet is received This patch sets probation to 0 whenever an RTCP packet is received, not only when the source is new.
Something like this: commit cefbbb31c3306ec1ed003ded41e7c07971b56cec Author: Wim Taymans <wim.taymans@collabora.co.uk> Date: Thu Aug 30 22:07:24 2012 +0200 session: also stop probatation on existing sources Receiving an RTCP packet should also stop probation on sources we have seen before. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=683065
Oops I was too fast