Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(571)

Side by Side Diff: webrtc/test/drifting_clock.h

Issue 1674413004: Added A/V sync tests with drifting clocks. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/call_test.cc ('k') | webrtc/test/drifting_clock.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2016 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 #ifndef WEBRTC_TEST_DRIFTING_CLOCK_H_
11 #define WEBRTC_TEST_DRIFTING_CLOCK_H_
12
13 #include "webrtc/system_wrappers/include/clock.h"
14
15 namespace webrtc {
16 namespace test {
17 class DriftingClock : public Clock {
18 public:
19 // TODO(danilchap): Make this constants constexpr when it would be supported.
20 static const float kDoubleSpeed; // 2.0f;
21 static const float kNoDrift; // 1.0f;
22 static const float kHalfSpeed; // 0.5f;
23
24 DriftingClock(Clock* clock, float speed);
25
26 // TODO(danilchap): Make this functions constexpr when it would be supported.
27 static float PercentsFaster(float percent) { return 1.0f + percent / 100.0f; }
28 static float PercentsSlower(float percent) { return 1.0f - percent / 100.0f; }
29
30 int64_t TimeInMilliseconds() const override;
31 int64_t TimeInMicroseconds() const override;
32 void CurrentNtp(uint32_t& seconds, uint32_t& fractions) const override;
33 int64_t CurrentNtpInMilliseconds() const override;
34
35 private:
36 float Drift() const;
37
38 Clock* const clock_;
39 const float drift_;
40 const int64_t start_time_;
41 };
42 } // namespace test
43 } // namespace webrtc
44
45 #endif // WEBRTC_TEST_DRIFTING_CLOCK_H_
OLDNEW
« no previous file with comments | « webrtc/test/call_test.cc ('k') | webrtc/test/drifting_clock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698