| Index: third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
|
| index 998eeaa2f9228e1e7ac1c2751d6f7f90fde65fe5..988f54479fd6fc30ca05cbb5c6e4faec252bb551 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
|
| @@ -110,8 +110,8 @@ void MediaStreamAudioSourceHandler::process(size_t numberOfFrames) {
|
| }
|
|
|
| // Use a tryLock() to avoid contention in the real-time audio thread.
|
| - // If we fail to acquire the lock then the MediaStream must be in the middle of
|
| - // a format change, so we output silence in this case.
|
| + // If we fail to acquire the lock then the MediaStream must be in the middle
|
| + // of a format change, so we output silence in this case.
|
| MutexTryLocker tryLocker(m_processLock);
|
| if (tryLocker.locked()) {
|
| getAudioSourceProvider()->provideInput(outputBus, numberOfFrames);
|
|
|