From 54bb9c2750f4d79490474343cb34ecfbf084e6f9 Mon Sep 17 00:00:00 2001 From: Palak Agarwal Date: Wed, 11 Oct 2023 16:56:17 +0200 Subject: [PATCH] Update index.bs --- index.bs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.bs b/index.bs index e0980e2..450b245 100644 --- a/index.bs +++ b/index.bs @@ -330,8 +330,8 @@ enum RTCEncodedVideoFrameType { ## RTCEncodedVideoFrameMetadata dictionary ## {#RTCEncodedVideoFrameMetadata}
 dictionary RTCEncodedVideoFrameMetadata {
-    unsigned long long frameId;
-    sequence<unsigned long long> dependencies;
+    required unsigned long long frameId;
+    required sequence<unsigned long long> dependencies;
     unsigned short width;
     unsigned short height;
     unsigned long spatialIndex;
@@ -340,7 +340,7 @@ dictionary RTCEncodedVideoFrameMetadata {
     octet payloadType;
     sequence<unsigned long> contributingSources;
     long long timestamp;    // microseconds
-    unsigned long rtpTimestamp;
+    required unsigned long rtpTimestamp;
 };
 
@@ -483,7 +483,7 @@ dictionary RTCEncodedAudioFrameMetadata { octet payloadType; sequence<unsigned long> contributingSources; short sequenceNumber; - unsigned long rtpTimestamp; + required unsigned long rtpTimestamp; }; ### Members ### {#RTCEncodedAudioFrameMetadata-members}