diff --git a/index.bs b/index.bs index cdd4a0c..64504d5 100644 --- a/index.bs +++ b/index.bs @@ -358,6 +358,7 @@ dictionary RTCEncodedVideoFrameMetadata { sequence<unsigned long> contributingSources; long long timestamp; // microseconds unsigned long rtpTimestamp; + DOMHighResTimeStamp receiveTime; DOMString mimeType; }; @@ -431,6 +432,18 @@ dictionary RTCEncodedVideoFrameMetadata { that reflects the sampling instant of the first octet in the RTP data packet.

+
+ receiveTime DOMHighResTimeStamp +
+
+

+ For frames coming from an RTCRtpReceiver, represents the timestamp + of the last received packet used to produce this video frame. This + timestamp is relative to {{Performance}}.{{Performance/timeOrigin}}. + Only exists for incoming video frames. +

+
mimeType DOMString
@@ -614,6 +627,7 @@ dictionary RTCEncodedAudioFrameMetadata { sequence<unsigned long> contributingSources; short sequenceNumber; unsigned long rtpTimestamp; + DOMHighResTimeStamp receiveTime; DOMString mimeType; }; @@ -667,6 +681,17 @@ dictionary RTCEncodedAudioFrameMetadata { that reflects the sampling instant of the first octet in the RTP data packet.

+
+ receiveTime DOMHighResTimeStamp +
+
+

+ For frames coming from an RTCRtpReceiver, represents the timestamp + of the last received packet used to produce this audio frame. This + timestamp is relative to {{Performance}}.{{Performance/timeOrigin}}. + Only exists for incoming audio frames. +

mimeType DOMString