From faf947c0695644c6380f1f3cc43c3c722a7ba49d Mon Sep 17 00:00:00 2001 From: aboba Date: Tue, 1 Dec 2015 15:44:27 -0800 Subject: [PATCH 1/2] Changing RTCRtpContributingSource from an Interface to a dictionary Relates to ORTC Issue 289: https://github.com/openpeer/ortc/issues/289 --- ortc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ortc.html b/ortc.html index ee3b12d..9234913 100644 --- a/ortc.html +++ b/ortc.html @@ -1847,8 +1847,8 @@

dictionary RTCRtpContributingSource

If the RTP packet contains no CSRCs, then the RTCRtpContributingSource object corresponding to the SSRC is updated, and the level value for the SSRC is updated based on the client-mixer header extension [[!RFC6464]] if present.

-
-
readonly attribute DOMHighResTimeStamp timestamp
+
+
DOMHighResTimeStamp timestamp

The timestamp of type DOMHighResTimeStamp @@ -1858,11 +1858,11 @@

dictionary RTCRtpContributingSource

a local clock.

-
readonly attribute unsigned long source
+
unsigned long source

The CSRC or SSRC value of the contributing source.

-
readonly attribute byte? audioLevel
+
byte? audioLevel

The audio level contained in the last RTP packet From d9e0586f5201f75dc1c8b32062344ac5face4f94 Mon Sep 17 00:00:00 2001 From: aboba Date: Tue, 1 Dec 2015 15:50:03 -0800 Subject: [PATCH 2/2] Added change log Added change log for Issue 289: https://github.com/openpeer/ortc/issues/289 --- ortc.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ortc.html b/ortc.html index 9234913..ecfb51f 100644 --- a/ortc.html +++ b/ortc.html @@ -5694,6 +5694,10 @@

Changes since 20 November 2015

Clarified requirements for DTMF A-D tone support, as noted in: Issue 391 +
  • + Change RTCRtpContributingSource from an interface to a dictionary, as noted in: + Issue 289 +