/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
D | neteq_impl.h | 217 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 228 int* num_channels) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 238 bool* play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 250 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 258 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 264 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 270 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 273 int DoExpand(bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 280 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 287 bool play_dtmf) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); [all …]
|
D | neteq_impl.cc | 66 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in NetEqImpl() 119 CriticalSectionScoped lock(crit_sect_.get()); in InsertPacket() 137 CriticalSectionScoped lock(crit_sect_.get()); in InsertSyncPacket() 159 CriticalSectionScoped lock(crit_sect_.get()); in GetAudio() 178 CriticalSectionScoped lock(crit_sect_.get()); in RegisterPayloadType() 204 CriticalSectionScoped lock(crit_sect_.get()); in RegisterExternalDecoder() 241 CriticalSectionScoped lock(crit_sect_.get()); in RemovePayloadType() 256 CriticalSectionScoped lock(crit_sect_.get()); in SetMinimumDelay() 265 CriticalSectionScoped lock(crit_sect_.get()); in SetMaximumDelay() 274 CriticalSectionScoped lock(crit_sect_.get()); in LeastRequiredDelayMs() [all …]
|
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/ |
D | timing.cc | 23 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in VCMTiming() 46 delete crit_sect_; in ~VCMTiming() 50 CriticalSectionScoped cs(crit_sect_); in Reset() 65 CriticalSectionScoped cs(crit_sect_); in set_render_delay() 70 CriticalSectionScoped cs(crit_sect_); in set_min_playout_delay() 75 CriticalSectionScoped cs(crit_sect_); in SetJitterDelay() 86 CriticalSectionScoped cs(crit_sect_); in UpdateCurrentDelay() 125 CriticalSectionScoped cs(crit_sect_); in UpdateCurrentDelay() 142 CriticalSectionScoped cs(crit_sect_); in StopDecodeTimer() 150 CriticalSectionScoped cs(crit_sect_); in IncomingTimestamp() [all …]
|
D | jitter_buffer.cc | 129 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in VCMJitterBuffer() 177 delete crit_sect_; in ~VCMJitterBuffer() 182 crit_sect_->Enter(); in CopyFrom() 183 rhs.crit_sect_->Enter(); in CopyFrom() 227 rhs.crit_sect_->Leave(); in CopyFrom() 228 crit_sect_->Leave(); in CopyFrom() 243 CriticalSectionScoped cs(crit_sect_); in Start() 268 crit_sect_->Enter(); in Stop() 281 crit_sect_->Leave(); in Stop() 288 CriticalSectionScoped cs(crit_sect_); in Running() [all …]
|
D | receiver.cc | 32 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in VCMReceiver() 43 delete crit_sect_; in ~VCMReceiver() 47 CriticalSectionScoped cs(crit_sect_); in Reset() 63 CriticalSectionScoped cs(crit_sect_); in Initialize() 228 CriticalSectionScoped cs(crit_sect_); in SetNackMode() 246 CriticalSectionScoped cs(crit_sect_); in NackMode() 286 CriticalSectionScoped cs(crit_sect_); in State() 299 CriticalSectionScoped cs(crit_sect_); in SetMinReceiverDelay() 328 CriticalSectionScoped cs(crit_sect_); in UpdateState()
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
D | acm_receiver.h | 332 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_); 343 scoped_ptr<CriticalSectionWrapper> crit_sect_; variable 345 int last_audio_decoder_ GUARDED_BY(crit_sect_); 346 AudioFrame::VADActivity previous_audio_activity_ GUARDED_BY(crit_sect_); 347 int current_sample_rate_hz_ GUARDED_BY(crit_sect_); 348 ACMResampler resampler_ GUARDED_BY(crit_sect_); 351 int16_t audio_buffer_[AudioFrame::kMaxDataSizeSamples] GUARDED_BY(crit_sect_); 352 scoped_ptr<Nack> nack_ GUARDED_BY(crit_sect_); 353 bool nack_enabled_ GUARDED_BY(crit_sect_); 354 CallStatistics call_stats_ GUARDED_BY(crit_sect_);
|
D | audio_coding_module_unittest.cc | 74 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()) {} in PacketizationCallbackStub() 83 CriticalSectionScoped lock(crit_sect_.get()); in SendData() 90 CriticalSectionScoped lock(crit_sect_.get()); in num_calls() 95 CriticalSectionScoped lock(crit_sect_.get()); in last_payload_len_bytes() 100 CriticalSectionScoped lock(crit_sect_.get()); in SwapBuffers() 105 int num_calls_ GUARDED_BY(crit_sect_); 106 std::vector<uint8_t> last_payload_vec_ GUARDED_BY(crit_sect_); 107 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in webrtc::PacketizationCallbackStub 298 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in AudioCodingModuleMtTest() 329 CriticalSectionScoped lock(crit_sect_.get()); in TestDone() [all …]
|
D | acm_receiver.cc | 121 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in AcmReceiver() 166 CriticalSectionScoped lock(crit_sect_.get()); in SetInitialDelay() 210 CriticalSectionScoped lock(crit_sect_.get()); in current_sample_rate_hz() 273 CriticalSectionScoped lock(crit_sect_.get()); in InsertPacket() 363 CriticalSectionScoped lock(crit_sect_.get()); in GetAudio() 408 CriticalSectionScoped lock(crit_sect_.get()); in GetAudio() 503 CriticalSectionScoped lock(crit_sect_.get()); in AddCodec() 549 CriticalSectionScoped lock(crit_sect_.get()); in EnableVad() 555 CriticalSectionScoped lock(crit_sect_.get()); in DisableVad() 567 CriticalSectionScoped lock(crit_sect_.get()); in RemoveAllCodecs() [all …]
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
D | condition_variable_unittest.cc | 38 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in Baton() 46 delete crit_sect_; in ~Baton() 55 CriticalSectionScoped cs(crit_sect_); in Pass() 66 CriticalSectionScoped cs(crit_sect_); in Grab() 85 if (!cond_var_->SleepCS(*crit_sect_, timeout_ms)) { in WaitUntilBatonOffered() 109 not_timeout = cond_var_->SleepCS(*crit_sect_, timeout_ms); in TakeBatonIfStillFree() 128 CriticalSectionWrapper* crit_sect_; member in webrtc::__anon8d4786c40111::Baton
|
D | critical_section_unittest.cc | 36 : crit_sect_(crit_sect), in ProtectedCount() 41 CriticalSectionScoped cs(crit_sect_); in Increment() 46 CriticalSectionScoped cs(crit_sect_); in Count() 51 CriticalSectionWrapper* crit_sect_; member in webrtc::__anon8c4847970111::ProtectedCount
|
D | trace_posix.cc | 37 : crit_sect_(*CriticalSectionWrapper::CreateCriticalSection()) { in TracePosix() 44 delete &crit_sect_; in ~TracePosix() 60 CriticalSectionScoped lock(&crit_sect_); in AddTime()
|
/external/webrtc/src/system_wrappers/source/ |
D | condition_variable_unittest.cc | 40 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in Baton() 48 delete crit_sect_; in ~Baton() 59 CriticalSectionScoped cs(crit_sect_); in Pass() 71 CriticalSectionScoped cs(crit_sect_); in Grab() 91 if (!cond_var_->SleepCS(*crit_sect_, timeout_ms)) { in WaitUntilBatonOffered() 118 not_timeout = cond_var_->SleepCS(*crit_sect_, timeout_ms); in TakeBatonIfStillFree() 138 CriticalSectionWrapper* crit_sect_; member in webrtc::__anonba08dd080111::Baton
|
D | critical_section_unittest.cc | 46 : crit_sect_(crit_sect), in ProtectedCount() 51 CriticalSectionScoped cs(crit_sect_); in Increment() 57 CriticalSectionScoped cs(crit_sect_); in Count() 62 CriticalSectionWrapper* crit_sect_; member in webrtc::__anonb1773cdb0111::ProtectedCount
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
D | fec_receiver_impl.cc | 29 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in FecReceiverImpl() 75 CriticalSectionScoped cs(crit_sect_.get()); in AddReceivedRedPacket() 210 crit_sect_->Enter(); in ProcessReceivedFec() 216 crit_sect_->Leave(); in ProcessReceivedFec() 221 crit_sect_->Enter(); in ProcessReceivedFec() 224 crit_sect_->Leave(); in ProcessReceivedFec() 236 crit_sect_->Leave(); in ProcessReceivedFec() 241 crit_sect_->Enter(); in ProcessReceivedFec() 244 crit_sect_->Leave(); in ProcessReceivedFec()
|
D | rtp_payload_registry.cc | 19 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in RTPPayloadRegistry() 70 CriticalSectionScoped cs(crit_sect_.get()); in RegisterReceivePayload() 134 CriticalSectionScoped cs(crit_sect_.get()); in DeRegisterReceivePayload() 189 CriticalSectionScoped cs(crit_sect_.get()); in ReceivePayloadType() 232 CriticalSectionScoped cs(crit_sect_.get()); in RtxEnabled() 237 CriticalSectionScoped cs(crit_sect_.get()); in IsRtx() 268 CriticalSectionScoped cs(crit_sect_.get()); in RestoreOriginalPacket() 286 CriticalSectionScoped cs(crit_sect_.get()); in SetRtxSsrc() 292 CriticalSectionScoped cs(crit_sect_.get()); in SetRtxPayloadType() 299 CriticalSectionScoped cs(crit_sect_.get()); in IsRed() [all …]
|
D | rtp_receiver_audio.cc | 54 CriticalSectionScoped lock(crit_sect_.get()); in SetTelephoneEventForwardToDecoder() 60 CriticalSectionScoped lock(crit_sect_.get()); in TelephoneEventForwardToDecoder() 66 CriticalSectionScoped lock(crit_sect_.get()); in TelephoneEventPayloadType() 73 CriticalSectionScoped lock(crit_sect_.get()); in CNGPayloadType() 160 CriticalSectionScoped lock(crit_sect_.get()); in OnNewPayloadTypeCreated() 210 CriticalSectionScoped lock(crit_sect_.get()); in GetPayloadTypeFrequency() 257 CriticalSectionScoped cs(crit_sect_.get()); in Energy() 302 CriticalSectionScoped lock(crit_sect_.get()); in ParseAudioCodecSpecific() 347 CriticalSectionScoped lock(crit_sect_.get()); in ParseAudioCodecSpecific()
|
D | rtp_receiver_strategy.cc | 20 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in RTPReceiverStrategy() 27 CriticalSectionScoped cs(crit_sect_.get()); in GetLastMediaSpecificPayload() 33 CriticalSectionScoped cs(crit_sect_.get()); in SetLastMediaSpecificPayload()
|
/external/chromium_org/third_party/webrtc/video_engine/ |
D | vie_channel_group.cc | 41 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in WrappingBitrateEstimator() 61 CriticalSectionScoped cs(crit_sect_.get()); in IncomingPacket() 77 CriticalSectionScoped cs(crit_sect_.get()); in OnRttUpdate() 82 CriticalSectionScoped cs(crit_sect_.get()); in RemoveStream() 88 CriticalSectionScoped cs(crit_sect_.get()); in LatestEstimate() 93 CriticalSectionScoped cs(crit_sect_.get()); in GetStats() 98 CriticalSectionScoped cs(crit_sect_.get()); in SetConfig() 110 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_.get()) { in PickEstimatorFromHeader() 135 void PickEstimator() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_.get()) { in PickEstimator() 150 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in webrtc::__anon46d2f1950111::WrappingBitrateEstimator
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/ |
D | rtp_payload_registry.h | 107 CriticalSectionScoped cs(crit_sect_.get()); in ResetLastReceivedPayloadTypes() 121 CriticalSectionScoped cs(crit_sect_.get()); in red_payload_type() 125 CriticalSectionScoped cs(crit_sect_.get()); in ulpfec_payload_type() 129 CriticalSectionScoped cs(crit_sect_.get()); in last_received_payload_type() 133 CriticalSectionScoped cs(crit_sect_.get()); in set_last_received_payload_type() 138 CriticalSectionScoped cs(crit_sect_.get()); in last_received_media_payload_type() 153 scoped_ptr<CriticalSectionWrapper> crit_sect_; variable
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_logging.cc | 63 CriticalSectionScoped cs(crit_sect_.get()); in SetGlobalContext() 68 CriticalSectionScoped cs(crit_sect_.get()); in SetGlobalContext() 73 CriticalSectionScoped cs(crit_sect_.get()); in SetGlobalContext() 78 CriticalSectionScoped cs(crit_sect_.get()); in SetGlobalEnable() 83 CriticalSectionScoped cs(crit_sect_.get()); in Log() 98 CriticalSectionScoped cs(crit_sect_.get()); in Plot() 109 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in Logging() 134 CriticalSectionScoped cs(crit_sect_.get()); in PushState() 147 CriticalSectionScoped cs(crit_sect_.get()); in PopState()
|
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/ |
D | vcm_payload_sink_factory.cc | 126 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in VcmPayloadSinkFactory() 129 assert(crit_sect_.get()); in VcmPayloadSinkFactory() 139 CriticalSectionScoped cs(crit_sect_.get()); in Create() 182 CriticalSectionScoped cs(crit_sect_.get()); in DecodeAndProcessAll() 194 CriticalSectionScoped cs(crit_sect_.get()); in ProcessAll() 204 CriticalSectionScoped cs(crit_sect_.get()); in DecodeAll() 215 CriticalSectionScoped cs(crit_sect_.get()); in Remove()
|
D | rtp_player.cc | 76 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in LostPackets() 99 CriticalSectionScoped cs(crit_sect_.get()); in AddPacket() 111 CriticalSectionScoped cs(crit_sect_.get()); in SetResendTime() 128 CriticalSectionScoped cs(crit_sect_.get()); in NextPacketToResend() 141 CriticalSectionScoped cs(crit_sect_.get()); in NumberOfPacketsToResend() 154 CriticalSectionScoped cs(crit_sect_.get()); in LogPacketResent() 162 CriticalSectionScoped cs(crit_sect_.get()); in Print() 179 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in webrtc::rtpplayer::LostPackets
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/ |
D | remote_bitrate_estimator_single_stream.cc | 91 scoped_ptr<CriticalSectionWrapper> crit_sect_; member in webrtc::__anon5be34faf0111::RemoteBitrateEstimatorSingleStream 103 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in RemoteBitrateEstimatorSingleStream() 116 CriticalSectionScoped cs(crit_sect_.get()); in IncomingPacket() 165 CriticalSectionScoped cs(crit_sect_.get()); in UpdateEstimate() 209 CriticalSectionScoped cs(crit_sect_.get()); in OnRttUpdate() 214 CriticalSectionScoped cs(crit_sect_.get()); in RemoveStream() 222 CriticalSectionScoped cs(crit_sect_.get()); in LatestEstimate()
|
/external/chromium_org/third_party/webrtc/video/ |
D | bitrate_estimator_tests.cc | 116 : crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in TraceObserver() 123 CriticalSectionScoped lock(crit_sect_.get()); in PushExpectedLogLine() 130 CriticalSectionScoped lock(crit_sect_.get()); in Print() 156 const scoped_ptr<CriticalSectionWrapper> crit_sect_; member in webrtc::BitrateEstimatorTest::TraceObserver 157 Strings received_log_lines_ GUARDED_BY(crit_sect_); 158 Strings expected_log_lines_ GUARDED_BY(crit_sect_);
|
/external/chromium_org/third_party/webrtc/modules/audio_device/android/ |
D | opensles_output.cc | 51 crit_sect_(CriticalSectionWrapper::CreateCriticalSection()), in OpenSlesOutput() 175 CriticalSectionScoped lock(crit_sect_.get()); in StartPlayout() 428 CriticalSectionScoped lock(crit_sect_.get()); in DestroyAudioPlayer() 520 CriticalSectionScoped lock(crit_sect_.get()); in StopCbThreads() 551 CriticalSectionScoped lock(crit_sect_.get()); in CbThreadImpl()
|