blob: 63493eaae25e2fb0f37369a8b4c0bc844221e8e2 [file] [log] [blame]
Sergey Silkinae3144c2018-08-29 01:05:26 +02001/*
2 * Copyright (c) 2018 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
11#ifndef MODULES_VIDEO_CODING_UTILITY_FRAMERATE_CONTROLLER_H_
12#define MODULES_VIDEO_CODING_UTILITY_FRAMERATE_CONTROLLER_H_
13
14#include "absl/types/optional.h"
15#include "rtc_base/rate_statistics.h"
16
17namespace webrtc {
18
19class FramerateController {
20 public:
21 explicit FramerateController(float target_framerate_fps);
22
23 void SetTargetRate(float target_framerate_fps);
24 float GetTargetRate();
25
26 // Advices user to drop next frame in order to reach target framerate.
27 bool DropFrame(uint32_t timestamp_ms) const;
28
29 void AddFrame(uint32_t timestamp_ms);
30
31 void Reset();
32
33 private:
34 absl::optional<float> Rate(uint32_t timestamp_ms) const;
35
36 absl::optional<float> target_framerate_fps_;
37 absl::optional<uint32_t> last_timestamp_ms_;
38 uint32_t min_frame_interval_ms_;
39 RateStatistics framerate_estimator_;
40};
41
42} // namespace webrtc
43
44#endif // MODULES_VIDEO_CODING_UTILITY_FRAMERATE_CONTROLLER_H_