| Index: media/base/video_frame.h
|
| diff --git a/media/base/video_frame.h b/media/base/video_frame.h
|
| index 80169cbe822990ca487fa5993d12bc2c5a7aa0d0..ff39d9c86ba08187078ba6d46239b047c7463428 100644
|
| --- a/media/base/video_frame.h
|
| +++ b/media/base/video_frame.h
|
| @@ -364,6 +364,9 @@ class MEDIA_EXPORT VideoFrame : public base::RefCountedThreadSafe<VideoFrame> {
|
| const VideoFrameMetadata* metadata() const { return &metadata_; }
|
| VideoFrameMetadata* metadata() { return &metadata_; }
|
|
|
| + // The time span between the current frame and the first frame of the stream.
|
| + // This is the media timestamp, and not the reference time.
|
| + // See VideoFrameMetadata::REFERENCE_TIME for details.
|
| base::TimeDelta timestamp() const { return timestamp_; }
|
| void set_timestamp(base::TimeDelta timestamp) {
|
| timestamp_ = timestamp;
|
|
|