Chromium Code Reviews| Index: media/base/video_frame.h |
| diff --git a/media/base/video_frame.h b/media/base/video_frame.h |
| index bc92b9a0fcaee3c460ee2cf493b2629cae7c2fc7..49fabb622c3007412349776fbdedf0097512aec1 100644 |
| --- a/media/base/video_frame.h |
| +++ b/media/base/video_frame.h |
| @@ -365,6 +365,8 @@ 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. |
|
miu
2015/08/04 04:35:07
Nice. Please also add something to the effect of:
qiangchen
2015/08/04 16:35:25
Done.
|
| + // TODO(qiangchen): See above, move this into metadata. |
|
miu
2015/08/04 04:35:08
Let's not add this TODO yet. We should discuss wi
qiangchen
2015/08/04 16:35:25
Done.
|
| base::TimeDelta timestamp() const { return timestamp_; } |
| void set_timestamp(base::TimeDelta timestamp) { |
| timestamp_ = timestamp; |