blob: 97f61b5880f6fb4176813d2066eeafa85e715bb4 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_VIDEO_CODING_TIMING_H_
12#define MODULES_VIDEO_CODING_TIMING_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000013
magjed2943f012016-03-22 05:12:09 -070014#include <memory>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "modules/video_coding/codec_timer.h"
17#include "rtc_base/criticalsection.h"
18#include "rtc_base/thread_annotations.h"
Mirko Bonadei71207422017-09-15 13:58:09 +020019#include "typedefs.h" // NOLINT(build/include)
niklase@google.com470e71d2011-07-07 08:21:25 +000020
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000021namespace webrtc {
niklase@google.com470e71d2011-07-07 08:21:25 +000022
stefan@webrtc.orga678a3b2013-01-21 07:42:11 +000023class Clock;
wu@webrtc.org66773a02014-05-07 17:09:44 +000024class TimestampExtrapolator;
niklase@google.com470e71d2011-07-07 08:21:25 +000025
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000026class VCMTiming {
27 public:
28 // The primary timing component should be passed
29 // if this is the dual timing component.
philipel5908c712015-12-21 08:23:20 -080030 explicit VCMTiming(Clock* clock, VCMTiming* master_timing = NULL);
philipelbe7a9e52016-05-19 12:19:35 +020031 virtual ~VCMTiming();
niklase@google.com470e71d2011-07-07 08:21:25 +000032
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000033 // Resets the timing to the initial state.
34 void Reset();
niklase@google.com470e71d2011-07-07 08:21:25 +000035
mikhal@webrtc.orgadc64a72013-05-30 16:20:18 +000036 // Set the amount of time needed to render an image. Defaults to 10 ms.
isheriff6b4b5f32016-06-08 00:24:21 -070037 void set_render_delay(int render_delay_ms);
niklase@google.com470e71d2011-07-07 08:21:25 +000038
mikhal@webrtc.orgadc64a72013-05-30 16:20:18 +000039 // Set the minimum time the video must be delayed on the receiver to
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000040 // get the desired jitter buffer level.
isheriff6b4b5f32016-06-08 00:24:21 -070041 void SetJitterDelay(int required_delay_ms);
niklase@google.com470e71d2011-07-07 08:21:25 +000042
Åsa Persson8368d1a2018-01-05 12:44:45 +010043 // Set/get the minimum playout delay from capture to render in ms.
isheriff6b4b5f32016-06-08 00:24:21 -070044 void set_min_playout_delay(int min_playout_delay_ms);
isheriff6b4b5f32016-06-08 00:24:21 -070045 int min_playout_delay();
46
Åsa Persson8368d1a2018-01-05 12:44:45 +010047 // Set/get the maximum playout delay from capture to render in ms.
isheriff6b4b5f32016-06-08 00:24:21 -070048 void set_max_playout_delay(int max_playout_delay_ms);
isheriff6b4b5f32016-06-08 00:24:21 -070049 int max_playout_delay();
niklase@google.com470e71d2011-07-07 08:21:25 +000050
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000051 // Increases or decreases the current delay to get closer to the target delay.
52 // Calculates how long it has been since the previous call to this function,
53 // and increases/decreases the delay in proportion to the time difference.
54 void UpdateCurrentDelay(uint32_t frame_timestamp);
niklase@google.com470e71d2011-07-07 08:21:25 +000055
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000056 // Increases or decreases the current delay to get closer to the target delay.
57 // Given the actual decode time in ms and the render time in ms for a frame,
58 // this function calculates how late the frame is and increases the delay
59 // accordingly.
60 void UpdateCurrentDelay(int64_t render_time_ms,
61 int64_t actual_decode_time_ms);
niklase@google.com470e71d2011-07-07 08:21:25 +000062
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000063 // Stops the decoder timer, should be called when the decoder returns a frame
64 // or when the decoded frame callback is called.
Åsa Persson8368d1a2018-01-05 12:44:45 +010065 void StopDecodeTimer(uint32_t time_stamp,
66 int32_t decode_time_ms,
67 int64_t now_ms,
68 int64_t render_time_ms);
niklase@google.com470e71d2011-07-07 08:21:25 +000069
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000070 // Used to report that a frame is passed to decoding. Updates the timestamp
71 // filter which is used to map between timestamps and receiver system time.
72 void IncomingTimestamp(uint32_t time_stamp, int64_t last_packet_time_ms);
Åsa Persson8368d1a2018-01-05 12:44:45 +010073
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000074 // Returns the receiver system time when the frame with timestamp
Åsa Persson8368d1a2018-01-05 12:44:45 +010075 // |frame_timestamp| should be rendered, assuming that the system time
76 // currently is |now_ms|.
philipelbe7a9e52016-05-19 12:19:35 +020077 virtual int64_t RenderTimeMs(uint32_t frame_timestamp, int64_t now_ms) const;
niklase@google.com470e71d2011-07-07 08:21:25 +000078
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000079 // Returns the maximum time in ms that we can wait for a frame to become
80 // complete before we must pass it to the decoder.
philipelbe7a9e52016-05-19 12:19:35 +020081 virtual uint32_t MaxWaitingTime(int64_t render_time_ms, int64_t now_ms) const;
niklase@google.com470e71d2011-07-07 08:21:25 +000082
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +000083 // Returns the current target delay which is required delay + decode time +
84 // render delay.
isheriff6b4b5f32016-06-08 00:24:21 -070085 int TargetVideoDelay() const;
niklase@google.com470e71d2011-07-07 08:21:25 +000086
asapersson8d560882016-12-22 01:26:18 -080087 // Return current timing information. Returns true if the first frame has been
88 // decoded, false otherwise.
philipela45102f2017-02-22 05:30:39 -080089 virtual bool GetTimings(int* decode_ms,
90 int* max_decode_ms,
91 int* current_delay_ms,
92 int* target_delay_ms,
93 int* jitter_buffer_ms,
94 int* min_playout_delay_ms,
95 int* render_delay_ms) const;
fischman@webrtc.org37bb4972013-10-23 23:59:45 +000096
ilnik2edc6842017-07-06 03:06:50 -070097 void SetTimingFrameInfo(const TimingFrameInfo& info);
98 rtc::Optional<TimingFrameInfo> GetTimingFrameInfo();
99
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +0000100 enum { kDefaultRenderDelayMs = 10 };
101 enum { kDelayMaxChangeMsPerS = 100 };
niklase@google.com470e71d2011-07-07 08:21:25 +0000102
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +0000103 protected:
danilchap56359be2017-09-07 07:53:45 -0700104 int RequiredDecodeTimeMs() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
pbos@webrtc.org04221002014-07-10 15:25:37 +0000105 int64_t RenderTimeMsInternal(uint32_t frame_timestamp, int64_t now_ms) const
danilchap56359be2017-09-07 07:53:45 -0700106 RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
107 int TargetDelayInternal() const RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000108
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +0000109 private:
asapersson@webrtc.orgf2447602014-12-09 14:13:26 +0000110 void UpdateHistograms() const;
111
kthelgasond701dfd2017-03-27 07:24:57 -0700112 rtc::CriticalSection crit_sect_;
pbos@webrtc.org04221002014-07-10 15:25:37 +0000113 Clock* const clock_;
danilchap56359be2017-09-07 07:53:45 -0700114 bool master_ RTC_GUARDED_BY(crit_sect_);
115 TimestampExtrapolator* ts_extrapolator_ RTC_GUARDED_BY(crit_sect_);
116 std::unique_ptr<VCMCodecTimer> codec_timer_ RTC_GUARDED_BY(crit_sect_);
117 int render_delay_ms_ RTC_GUARDED_BY(crit_sect_);
isheriff6b4b5f32016-06-08 00:24:21 -0700118 // Best-effort playout delay range for frames from capture to render.
119 // The receiver tries to keep the delay between |min_playout_delay_ms_|
120 // and |max_playout_delay_ms_| taking the network jitter into account.
121 // A special case is where min_playout_delay_ms_ = max_playout_delay_ms_ = 0,
122 // in which case the receiver tries to play the frames as they arrive.
danilchap56359be2017-09-07 07:53:45 -0700123 int min_playout_delay_ms_ RTC_GUARDED_BY(crit_sect_);
124 int max_playout_delay_ms_ RTC_GUARDED_BY(crit_sect_);
125 int jitter_delay_ms_ RTC_GUARDED_BY(crit_sect_);
126 int current_delay_ms_ RTC_GUARDED_BY(crit_sect_);
127 int last_decode_ms_ RTC_GUARDED_BY(crit_sect_);
128 uint32_t prev_frame_timestamp_ RTC_GUARDED_BY(crit_sect_);
129 rtc::Optional<TimingFrameInfo> timing_frame_info_ RTC_GUARDED_BY(crit_sect_);
asapersson@webrtc.orgf2447602014-12-09 14:13:26 +0000130
131 // Statistics.
danilchap56359be2017-09-07 07:53:45 -0700132 size_t num_decoded_frames_ RTC_GUARDED_BY(crit_sect_);
133 size_t num_delayed_decoded_frames_ RTC_GUARDED_BY(crit_sect_);
134 int64_t first_decoded_frame_ms_ RTC_GUARDED_BY(crit_sect_);
135 uint64_t sum_missed_render_deadline_ms_ RTC_GUARDED_BY(crit_sect_);
niklase@google.com470e71d2011-07-07 08:21:25 +0000136};
mikhal@webrtc.org2eaf98b2013-05-21 17:58:43 +0000137} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +0000138
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200139#endif // MODULES_VIDEO_CODING_TIMING_H_