Chromium Code Reviews| Index: webrtc/api/video/video_timing.h |
| diff --git a/webrtc/api/video/video_timing.h b/webrtc/api/video/video_timing.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..014cb5e4d828fdc2111dd97eabffbccb88ab19f3 |
| --- /dev/null |
| +++ b/webrtc/api/video/video_timing.h |
| @@ -0,0 +1,50 @@ |
| +/* |
| + * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
| + * |
| + * Use of this source code is governed by a BSD-style license |
| + * that can be found in the LICENSE file in the root of the source |
| + * tree. An additional intellectual property rights grant can be found |
| + * in the file PATENTS. All contributing project authors may |
| + * be found in the AUTHORS file in the root of the source tree. |
| + */ |
| + |
| +#ifndef WEBRTC_API_VIDEO_VIDEO_TIMING_H_ |
| +#define WEBRTC_API_VIDEO_VIDEO_TIMING_H_ |
| + |
| +#include <stdint.h> |
| +#include <limits> |
| +#include "webrtc/base/checks.h" |
| +#include "webrtc/base/safe_conversions.h" |
| + |
| +namespace webrtc { |
| + |
| +// Video timing timstamps in ms counted from capture_time_ms of a frame. |
| +struct VideoTiming { |
| + static const uint8_t kEncodeStartDeltaIdx = 0; |
| + static const uint8_t kEncodeFinishIdx = 1; |
|
holmer
2017/06/19 07:48:26
Why doesn't this have delta in the name?
ilnik
2017/06/19 08:41:50
Overlooked typo. Fixed.
|
| + static const uint8_t kPacketizationFinishDeltaIdx = 2; |
| + static const uint8_t kPacerExitDeltaIdx = 3; |
| + static const uint8_t kNetworkTimestampDeltaIdx = 4; |
| + static const uint8_t kNetwork2TimestampDeltaIdx = 5; |
|
holmer
2017/06/19 07:48:26
What does 2 mean?
ilnik
2017/06/19 08:41:51
We just have 2 different timestamps reserved for n
holmer
2017/06/19 12:17:47
Ok, so we don't know if we need two? Maybe just ke
ilnik
2017/06/19 12:51:58
No, I know that one downstream project wants to ha
|
| + |
| + // Returns |time_ms - base_ms| capped at max 16-bit value. |
| + // Used to fill this data structure as per |
| + // https://webrtc.org/experiments/rtp-hdrext/video-timing/ extension stores |
| + // 16-bit deltas of timestamps from packet capture time. |
| + static uint16_t GetDeltaCappedMs(int64_t base_ms, int64_t time_ms) { |
| + RTC_DCHECK_GE(time_ms, base_ms); |
| + return rtc::saturated_cast<uint16_t>(time_ms - base_ms); |
| + } |
| + |
| + uint16_t encode_start_ms_delta; |
|
holmer
2017/06/19 07:48:26
I'd prefer delta before _ms:
encode_start_delta_ms
ilnik
2017/06/19 08:41:50
Done.
|
| + uint16_t encode_finish_ms_delta; |
| + uint16_t packetization_finish_ms_delta; |
| + uint16_t pacer_exit_ms_delta; |
| + uint16_t network_timstamp_ms_delta; |
| + uint16_t network2_timstamp_ms_delta; |
| + bool is_timing_frame; |
| +}; |
| + |
| +} // namespace webrtc |
| + |
| +#endif // WEBRTC_API_VIDEO_VIDEO_TIMING_H_ |