| Index: webrtc/modules/audio_device/include/fake_audio_device.h
|
| diff --git a/webrtc/modules/audio_device/include/fake_audio_device.h b/webrtc/modules/audio_device/include/fake_audio_device.h
|
| index 98fd2f46f63f991d76995dd3dd61302ebd869ed1..721bf02471a41f5c7d3f2cfe3b9da2e0a9bd9c75 100644
|
| --- a/webrtc/modules/audio_device/include/fake_audio_device.h
|
| +++ b/webrtc/modules/audio_device/include/fake_audio_device.h
|
| @@ -121,7 +121,10 @@ class FakeAudioDeviceModule : public AudioDeviceModule {
|
| virtual int32_t PlayoutBuffer(BufferType* type, uint16_t* sizeMS) const {
|
| return 0;
|
| }
|
| - virtual int32_t PlayoutDelay(uint16_t* delayMS) const { return 0; }
|
| + virtual int32_t PlayoutDelay(uint16_t* delayMS) const {
|
| + *delayMS = 0;
|
| + return 0;
|
| + }
|
| virtual int32_t RecordingDelay(uint16_t* delayMS) const { return 0; }
|
| virtual int32_t CPULoad(uint16_t* load) const { return 0; }
|
| virtual int32_t StartRawOutputFileRecording(
|
|
|