Skip to content

Commit

Permalink
Merge pull request #291 from openpeer/contributingSources-dictionary
Browse files Browse the repository at this point in the history
Change of RTCRtpContributingSource from an Interface to a dictionary
  • Loading branch information
Robin Raymond committed Dec 2, 2015
2 parents c7e1813 + d9e0586 commit 6f14135
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ortc.html
Expand Up @@ -1847,8 +1847,8 @@ <h3>dictionary RTCRtpContributingSource</h3>
If the RTP packet contains no CSRCs, then the <code><a>RTCRtpContributingSource</a></code> 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.
</p>
<dl class="idl" title="interface RTCRtpContributingSource">
<dt>readonly attribute DOMHighResTimeStamp timestamp</dt>
<dl class="idl" title="dictionary RTCRtpContributingSource">
<dt>DOMHighResTimeStamp timestamp</dt>
<dd>
<p>
The <var>timestamp</var> of type <code>DOMHighResTimeStamp</code>
Expand All @@ -1858,11 +1858,11 @@ <h3>dictionary RTCRtpContributingSource</h3>
a local clock.
</p>
</dd>
<dt>readonly attribute unsigned long source</dt>
<dt>unsigned long source</dt>
<dd>
<p>The CSRC or SSRC value of the contributing source.</p>
</dd>
<dt>readonly attribute byte? audioLevel</dt>
<dt>byte? audioLevel</dt>
<dd>
<p>
The audio level contained in the last RTP packet
Expand Down Expand Up @@ -5683,6 +5683,10 @@ <h3>Changes since 20 November 2015</h3>
Clarified requirements for DTMF A-D tone support, as noted in:
<a href="https://github.com/w3c/webrtc-pc/issues/391">Issue 391</a>
</li>
<li>
Change RTCRtpContributingSource from an interface to a dictionary, as noted in:
<a href="https://github.com/openpeer/ortc/issues/289">Issue 289</a>
</li>
</ol>
</section>
<section id="since-05-October-2015*">
Expand Down

0 comments on commit 6f14135

Please sign in to comment.