Skip to content

Commit

Permalink
Add presentationTime to RTCEncodedVideoFrameMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyherre authored and Tony Herre committed Apr 4, 2023
1 parent 5c7ab84 commit 867d5b8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ dictionary RTCEncodedVideoFrameMetadata {
unsigned long temporalIndex;
unsigned long synchronizationSource;
octet payloadType;
sequence<unsigned long> contributingSources;
sequence<unsigned long> contributingSources;
long long presentationTimestamp; // microseconds
};
</pre>

Expand Down Expand Up @@ -365,6 +366,17 @@ dictionary RTCEncodedVideoFrameMetadata {
The list of contribution sources (csrc list) as defined in [[RFC3550]].
</p>
</dd>
<dt>
<dfn>presentationTimestamp</dfn> of type <span class=
"idlMemberType">long long</span>
</dt>
<dd>
<p>
The media presentation timestamp (PTS) in microseconds of raw frame, matching the
{{VideoFrame/timestamp}} for raw frames which correspond to this frame and the
{{VideoFrameCallbackMetadata/mediaTime}} given if this frame is decoded and rendererd.
</p>
</dd>
</dl>


Expand Down

0 comments on commit 867d5b8

Please sign in to comment.