@@ -340,6 +340,7 @@ dictionary RTCEncodedVideoFrameMetadata {
340
340
octet payloadType;
341
341
sequence<unsigned long> contributingSources;
342
342
long long timestamp; // microseconds
343
+ unsigned long rtpTimestamp;
343
344
};
344
345
</pre>
345
346
@@ -383,6 +384,16 @@ dictionary RTCEncodedVideoFrameMetadata {
383
384
{{VideoFrame/timestamp}} for raw frames which correspond to this frame.
384
385
</p>
385
386
</dd>
387
+ <dt>
388
+ <dfn dict-member>rtpTimestamp</dfn> <span class=
389
+ "idlMemberType"> unsigned long</span>
390
+ </dt>
391
+ <dd>
392
+ <p>
393
+ The RTP timestamp identifier is an unsigned integer value per [[RFC3550]]
394
+ that reflects the sampling instant of the first octet in the RTP data packet.
395
+ </p>
396
+ </dd>
386
397
</dl>
387
398
388
399
@@ -393,7 +404,6 @@ dictionary RTCEncodedVideoFrameMetadata {
393
404
[Exposed=(Window,DedicatedWorker), Serializable]
394
405
interface RTCEncodedVideoFrame {
395
406
readonly attribute RTCEncodedVideoFrameType type;
396
- readonly attribute unsigned long timestamp;
397
407
attribute ArrayBuffer data;
398
408
RTCEncodedVideoFrameMetadata getMetadata();
399
409
};
@@ -410,16 +420,6 @@ interface RTCEncodedVideoFrame {
410
420
sent or received.
411
421
</p>
412
422
</dd>
413
-
414
- <dt>
415
- <dfn attribute>timestamp</dfn> <span class="idlMemberType"> unsigned long</span>
416
- </dt>
417
- <dd>
418
- <p>
419
- The RTP timestamp identifier is an unsigned integer value per [[RFC3550]]
420
- that reflects the sampling instant of the first octet in the RTP data packet.
421
- </p>
422
- </dd>
423
423
<dt>
424
424
<dfn attribute>data</dfn> <span class="idlMemberType"> ArrayBuffer</span>
425
425
</dt>
@@ -474,6 +474,7 @@ dictionary RTCEncodedAudioFrameMetadata {
474
474
octet payloadType;
475
475
sequence<unsigned long> contributingSources;
476
476
short sequenceNumber;
477
+ unsigned long rtpTimestamp;
477
478
};
478
479
</pre>
479
480
### Members ### {#RTCEncodedAudioFrameMetadata-members}
@@ -517,29 +518,28 @@ dictionary RTCEncodedAudioFrameMetadata {
517
518
Comparing two sequence numbers requires serial number arithmetic described in [[RFC1982]] .
518
519
</p>
519
520
</dd>
521
+ <dt>
522
+ <dfn dict-member>rtpTimestamp</dfn> of type <span class="idlMemberType"> unsigned long</span>
523
+ </dt>
524
+ <dd>
525
+ <p>
526
+ The RTP timestamp identifier is an unsigned integer value per [[RFC3550]]
527
+ that reflects the sampling instant of the first octet in the RTP data packet.
528
+ </p>
529
+ </dd>
520
530
</dl>
521
531
522
532
## <dfn interface>RTCEncodedAudioFrame</dfn> interface ## {#RTCEncodedAudioFrame-interface}
523
533
<pre class="idl">
524
534
[Exposed=(Window,DedicatedWorker), Serializable]
525
535
interface RTCEncodedAudioFrame {
526
- readonly attribute unsigned long timestamp;
527
536
attribute ArrayBuffer data;
528
537
RTCEncodedAudioFrameMetadata getMetadata();
529
538
};
530
539
</pre>
531
540
532
541
### Members ### {#RTCEncodedAudioFrame-members}
533
542
<dl dfn-for="RTCEncodedAudioFrame" class="dictionary-members">
534
- <dt>
535
- <dfn attribute>timestamp</dfn> <span class="idlMemberType"> unsigned long</span>
536
- </dt>
537
- <dd>
538
- <p>
539
- The RTP timestamp identifier is an unsigned integer value per [[RFC3550]]
540
- that reflects the sampling instant of the first octet in the RTP data packet.
541
- </p>
542
- </dd>
543
543
<dt>
544
544
<dfn attribute>data</dfn> <span class="idlMemberType"> ArrayBuffer</span>
545
545
</dt>
0 commit comments