| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "race:third_party/libvpx/source/libvpx/vp9/common/vp9_scan.h\n" | 28 "race:third_party/libvpx/source/libvpx/vp9/common/vp9_scan.h\n" |
| 29 | 29 |
| 30 // Usage of trace callback and trace level is racy in rtc_media_unittests. | 30 // Usage of trace callback and trace level is racy in rtc_media_unittests. |
| 31 // https://code.google.com/p/webrtc/issues/detail?id=3372 | 31 // https://code.google.com/p/webrtc/issues/detail?id=3372 |
| 32 "race:webrtc::TraceImpl::WriteToFile\n" | 32 "race:webrtc::TraceImpl::WriteToFile\n" |
| 33 "race:webrtc::VideoEngine::SetTraceFilter\n" | 33 "race:webrtc::VideoEngine::SetTraceFilter\n" |
| 34 "race:webrtc::VoiceEngine::SetTraceFilter\n" | 34 "race:webrtc::VoiceEngine::SetTraceFilter\n" |
| 35 "race:webrtc::Trace::set_level_filter\n" | 35 "race:webrtc::Trace::set_level_filter\n" |
| 36 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" | 36 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" |
| 37 | 37 |
| 38 // Audio processing | |
| 39 // https://code.google.com/p/webrtc/issues/detail?id=2521 for details. | |
| 40 "race:webrtc/modules/audio_processing/aec/aec_core.c\n" | |
| 41 "race:webrtc/modules/audio_processing/aec/aec_rdft.c\n" | |
| 42 | |
| 43 // Race in pulse initialization. | 38 // Race in pulse initialization. |
| 44 // https://code.google.com/p/webrtc/issues/detail?id=5152 | 39 // https://code.google.com/p/webrtc/issues/detail?id=5152 |
| 45 "race:webrtc::AudioDeviceLinuxPulse::Init\n" | 40 "race:webrtc::AudioDeviceLinuxPulse::Init\n" |
| 46 | 41 |
| 47 // rtc_unittests | 42 // rtc_unittests |
| 48 // https://code.google.com/p/webrtc/issues/detail?id=3911 for details. | 43 // https://code.google.com/p/webrtc/issues/detail?id=3911 for details. |
| 49 "race:rtc::AsyncInvoker::OnMessage\n" | 44 "race:rtc::AsyncInvoker::OnMessage\n" |
| 50 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" | 45 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n" |
| 51 "race:rtc::MessageQueueManager::Clear\n" | 46 "race:rtc::MessageQueueManager::Clear\n" |
| 52 "race:rtc::Thread::Clear\n" | 47 "race:rtc::Thread::Clear\n" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" | 81 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n" |
| 87 | 82 |
| 88 // Race between InitCpuFlags and TestCpuFlag in libyuv. | 83 // Race between InitCpuFlags and TestCpuFlag in libyuv. |
| 89 // https://code.google.com/p/libyuv/issues/detail?id=508 | 84 // https://code.google.com/p/libyuv/issues/detail?id=508 |
| 90 "race:InitCpuFlags\n" | 85 "race:InitCpuFlags\n" |
| 91 | 86 |
| 92 // End of suppressions. | 87 // End of suppressions. |
| 93 ; // Please keep this semicolon. | 88 ; // Please keep this semicolon. |
| 94 | 89 |
| 95 #endif // THREAD_SANITIZER | 90 #endif // THREAD_SANITIZER |
| OLD | NEW |