From 5ad1d814f927b1ae7366a9c04966ef4fdec34865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Mon, 13 Jun 2022 10:02:18 +0200 Subject: [PATCH 1/2] Add rtp timestamp and capture time to RTCEncodedVideoFrameMetadata --- index.bs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.bs b/index.bs index 1fc0f8f..fd34800 100644 --- a/index.bs +++ b/index.bs @@ -287,6 +287,8 @@ enum RTCEncodedVideoFrameType { dictionary RTCEncodedVideoFrameMetadata { long long frameId; + unsigned long rtpTimestamp; // RTP timestamp. + DOMHighResTimeStamp captureTime; sequence<long long> dependencies; unsigned short width; unsigned short height; From d94d5a0eef98860cdf393b2f18a90d29e2ef5301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Wed, 15 Jun 2022 13:21:41 +0200 Subject: [PATCH 2/2] Delete obsolete comment. --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index fd34800..69834eb 100644 --- a/index.bs +++ b/index.bs @@ -287,7 +287,7 @@ enum RTCEncodedVideoFrameType { dictionary RTCEncodedVideoFrameMetadata { long long frameId; - unsigned long rtpTimestamp; // RTP timestamp. + unsigned long rtpTimestamp; DOMHighResTimeStamp captureTime; sequence<long long> dependencies; unsigned short width;