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

Unified Diff: webrtc/test/fake_audio_device.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 side-by-side diff with in-line comments
Download patch
Index: webrtc/test/fake_audio_device.h
diff --git a/webrtc/test/fake_audio_device.h b/webrtc/test/fake_audio_device.h
index ce480c1554dac7038d1b3c6cedb57dd1b9649732..a99578ad2437e23097f98d82a6cbd77b2c8e0b63 100644
--- a/webrtc/test/fake_audio_device.h
+++ b/webrtc/test/fake_audio_device.h
@@ -16,6 +16,7 @@
#include "webrtc/base/platform_thread.h"
#include "webrtc/base/scoped_ptr.h"
#include "webrtc/modules/audio_device/include/fake_audio_device.h"
+#include "webrtc/test/drifting_clock.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -29,7 +30,7 @@ namespace test {
class FakeAudioDevice : public FakeAudioDeviceModule {
public:
- FakeAudioDevice(Clock* clock, const std::string& filename);
+ FakeAudioDevice(Clock* clock, const std::string& filename, float drift);
virtual ~FakeAudioDevice();
@@ -54,8 +55,10 @@ class FakeAudioDevice : public FakeAudioDeviceModule {
bool capturing_;
int8_t captured_audio_[kBufferSizeBytes];
int8_t playout_buffer_[kBufferSizeBytes];
+ float drift_ = .0;
pbos-webrtc 2016/02/09 21:06:18 Initialize in init-list or move all default-values
pbos-webrtc 2016/02/09 21:08:12 Also, const? This should always be taken from the
danilchap 2016/02/10 12:40:35 Done. It was done more like a comment what value t
int64_t last_playout_ms_;
+ DriftingClock drifting_clock_;
Clock* clock_;
rtc::scoped_ptr<EventTimerWrapper> tick_;
rtc::CriticalSection lock_;

Powered by Google App Engine
This is Rietveld 408576698