Skip to content

Commit

Permalink
Merge pull request #173 from tonyherre/tonyherre-capturetime
Browse files Browse the repository at this point in the history
Add presentationTimestamp to RTCEncodedVideoFrameMetadata
  • Loading branch information
henbos committed Apr 27, 2023
2 parents 5c7ab84 + f661a21 commit 442e4c2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 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 timestamp; // microseconds
};
</pre>

Expand Down Expand Up @@ -365,6 +366,16 @@ dictionary RTCEncodedVideoFrameMetadata {
The list of contribution sources (csrc list) as defined in [[RFC3550]].
</p>
</dd>
<dt>
<dfn>timestamp</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.
</p>
</dd>
</dl>


Expand Down

0 comments on commit 442e4c2

Please sign in to comment.