Skip to content

Commit 027545c

Browse files
committed
fix type of timestamp attribute
this exposes the rtp timestamp in implementations so should be a unsigned long to match the definition in RFC 3550.
1 parent f8dc25b commit 027545c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ dictionary RTCEncodedVideoFrameMetadata {
289289
[Exposed=(Window,DedicatedWorker)]
290290
interface RTCEncodedVideoFrame {
291291
readonly attribute RTCEncodedVideoFrameType type;
292-
readonly attribute unsigned long long timestamp;
292+
readonly attribute unsigned long timestamp;
293293
attribute ArrayBuffer data;
294294
RTCEncodedVideoFrameMetadata getMetadata();
295295
};
@@ -301,7 +301,7 @@ dictionary RTCEncodedAudioFrameMetadata {
301301

302302
[Exposed=(Window,DedicatedWorker)]
303303
interface RTCEncodedAudioFrame {
304-
readonly attribute unsigned long long timestamp;
304+
readonly attribute unsigned long timestamp;
305305
attribute ArrayBuffer data;
306306
RTCEncodedAudioFrameMetadata getMetadata();
307307
};

0 commit comments

Comments
 (0)