Skip to content

Commit d5ef0b0

Browse files
authored
Merge pull request #116 from fippo/rtp-timestamp
fix type of timestamp attribute
2 parents 5e54a2d + 7e7e6c8 commit d5ef0b0

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
@@ -302,7 +302,7 @@ dictionary RTCEncodedVideoFrameMetadata {
302302
[Exposed=(Window,DedicatedWorker)]
303303
interface RTCEncodedVideoFrame {
304304
readonly attribute RTCEncodedVideoFrameType type;
305-
readonly attribute unsigned long long timestamp;
305+
readonly attribute unsigned long timestamp; // RTP timestamp.
306306
attribute ArrayBuffer data;
307307
RTCEncodedVideoFrameMetadata getMetadata();
308308
};
@@ -315,7 +315,7 @@ dictionary RTCEncodedAudioFrameMetadata {
315315

316316
[Exposed=(Window,DedicatedWorker)]
317317
interface RTCEncodedAudioFrame {
318-
readonly attribute unsigned long long timestamp;
318+
readonly attribute unsigned long timestamp; // RTP timestamp.
319319
attribute ArrayBuffer data;
320320
RTCEncodedAudioFrameMetadata getMetadata();
321321
};

0 commit comments

Comments
 (0)