Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change of RTCRtpContributingSource from an Interface to a dictionary #291

Merged
merged 2 commits into from Dec 2, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 @@ -5694,6 +5694,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