Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rtp timestamp and capture time to RTCEncodedVideoFrameMetadata #137

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

nisse-work
Copy link

@nisse-work nisse-work commented Jun 13, 2022

Add both RTP timestamp and captureTime to RTCEncodedVideoFrameMetadata. On the send side, the capture time should equal the timestamp of the corresponding unencoded VideoFrame. On the receive side, it is best effort.


Preview | Diff

@@ -287,6 +287,8 @@ enum RTCEncodedVideoFrameType {

dictionary RTCEncodedVideoFrameMetadata {
long long frameId;
unsigned long rtpTimestamp; // RTP timestamp.
DOMHighResTimeStamp captureTime;
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what type and name to use for best consistency. VideoFrame uses the name "timestamp" and the "long long" type, https://w3c.github.io/webcodecs/#dom-videoframe-timestamp. While VideoFrameMetadata use name "captureTime" and type "DOMHighResTimeStamp", see https://wicg.github.io/video-rvfc/#dom-videoframemetadata-capturetime.

Copy link
Collaborator

@fippo fippo Jun 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should have rtpTimestamp and payload type at the root level which frees up names like timestamp for metadata...

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really don't have an informed opinion on naming (and typing). It's not clear to me why we have RTCEncodedVideoFrame.type and .timestamp, and all other metadata in RTCEncodedVideoFrameMetadata.

So I'll adapt to anything the w3c experts say.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what clock is the capture timestamp in? (in particular for remotely-sourced frames or frames from files)?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a very good question. For consistency, I'd prefer that it's whatever goes in https://w3c.github.io/webcodecs/#dom-videoframe-timestamp on correspponding unencoded frame, but docs aren't crystal clear on what clock that uses. It is marked as "nullable" there, so perhaps it's not provided in all cases?

@alvestrand
Copy link
Collaborator

Need to investgate:

  • What we can do to align with webcodecs
  • Whether the packetizer needs this information

@aboba
Copy link
Contributor

aboba commented Dec 1, 2022

Both capture time and RTP timestamp are provided in the RVFC specification (for VideoFrame).

@fippo fippo mentioned this pull request Dec 2, 2022
@alvestrand
Copy link
Collaborator

Perhaps Tony Herre can pick this up?

@Orphis
Copy link

Orphis commented Jan 26, 2023

@tonyherre

@tonyherre
Copy link
Contributor

I finally got round to opening #173 as essentially an adoption of this PR, incorporating the RVFC references.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants