Issue 163: WebRTC 1.0: Unhandled RTP streams

The WebRTC 1.0 API now has a pull request relating to unhandled RTP media streams: 
https://github.com/w3c/webrtc-pc/pull/29

This involves definition of an RTCMediaDiscardedEvent. 


 1932 + 
 1933 +        <dl class="idl" data-merge="RTCMediaDiscardedEventInit" 
 1934 +            title="interface RTCMediaDiscardedEvent : Event"> 
 1935 +          <dt>Constructor(DOMString type, RTCMediaDiscardedEventInit 
 1936 +          eventInitDict)</dt> 
 1937 + 
 1938 +          <dt>readonly attribute unsigned long ssrc</dt> 
 1939 +          <dd>The Synchronization source (SSRC) number of the packet.</dd> 
 1940 + 
 1941 +          <dt>readonly attribute unsigned byte payloadType</dt> 
 1942 +          <dd>The RTP payload type of the packet.</dd> 
 1943 + 
 1944 +          <dt>readonly attribute DOMString? mid</dt> 
 1945 +          <dd>The value of any mid header extension on the discarded media 
 1946 +          packet, if that header is present.</dd> 

Received on Monday, 1 December 2014 18:01:49 UTC