Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alvestrand committed Feb 2, 2017
1 parent f3d6407 commit cfe08cd
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions webrtc.html
Expand Up @@ -2621,20 +2621,29 @@ <h2>Attributes</h2>
<dt><dfn>offerToReceiveAudio</dfn> of type <span class="idlMemberType"><a>boolean</a></span></dt>
<dd>
<p>
When this is given a non-false value, and no outgoing track of
type "audio" is attached to the PeerConnection, createOffer()
will behave as if addTransceiver("audio") had been called prior
to the createOffer() call.
When this is given a non-false value, no outgoing track of
type "audio" is attached to the PeerConnection, and the existing
localDescription (if any) doesn't contain any sendrecv or recv audio media sections,
createOffer() will behave as if addTransceiver("audio") had been called once
prior to the createOffer() call.
</p>
<p>
In all other situations, it will be disregarded.
</p>
</dd>
<dt><dfn>offerToReceiveVideo</dfn> of type <span class="idlMemberType"><a>boolean</a></span></dt>
<dd>
<p>
When this is given a non-false value, and no outgoing track of
type "audio" is attached to the PeerConnection, createOffer()
type "video" is attached to the PeerConnection, and the existing
localDescription (if any) doesn't contain any sendecv or recv video
media sections, createOffer()
will behave as if addTransceiver("video") had been called prior
to the createOffer() call.
</p>
<p>
In all other situations, it will be disregarded.
</p>
</dd>
</dl>
</section>
Expand Down

0 comments on commit cfe08cd

Please sign in to comment.