Searched defs:audio_track (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/talk/app/webrtc/
H A Drtpsender.cc110 AudioTrackInterface* audio_track = static_cast<AudioTrackInterface*>(track); local
124 track_ = audio_track;
H A Dstatscollector.cc393 void StatsCollector::AddLocalAudioTrack(AudioTrackInterface* audio_track, argument
396 RTC_DCHECK(audio_track != NULL);
399 RTC_DCHECK(track.first != audio_track || track.second != ssrc);
402 local_audio_tracks_.push_back(std::make_pair(audio_track, ssrc));
407 audio_track->id()));
411 report->AddString(StatsReport::kStatsValueNameTrackId, audio_track->id());
415 void StatsCollector::RemoveLocalAudioTrack(AudioTrackInterface* audio_track, argument
417 RTC_DCHECK(audio_track != NULL);
420 [audio_track, ssrc](const LocalAudioTrackVector::value_type& track) {
421 return track.first == audio_track
[all...]
H A Dstatscollector_unittest.cc453 FakeAudioTrack* audio_track, cricket::VoiceSenderInfo* voice_sender_info) {
454 audio_track->GetSignalLevel(&voice_sender_info->audio_level);
456 audio_track->GetAudioProcessor()->GetStats(&audio_processor_stats);
598 FakeAudioTrack* audio_track,
641 EXPECT_EQ(audio_track->id(), track_id);
648 UpdateVoiceSenderInfoFromAudioTrack(audio_track, voice_sender_info);
657 stats->GetStats(audio_track, &track_reports);
664 EXPECT_EQ(audio_track->id(), track_id);
452 UpdateVoiceSenderInfoFromAudioTrack( FakeAudioTrack* audio_track, cricket::VoiceSenderInfo* voice_sender_info) argument
597 SetupAndVerifyAudioTrackStats( FakeAudioTrack* audio_track, webrtc::MediaStream* stream, webrtc::StatsCollector* stats, cricket::VoiceChannel* voice_channel, const std::string& vc_name, MockVoiceMediaChannel* media_channel, cricket::VoiceSenderInfo* voice_sender_info, cricket::VoiceReceiverInfo* voice_receiver_info, cricket::VoiceMediaInfo* stats_read, StatsReports* reports) argument
H A Dpeerconnection.cc1258 AudioTrackInterface* audio_track,
1260 receivers_.push_back(new AudioRtpReceiver(audio_track, ssrc, session_.get()));
1272 AudioTrackInterface* audio_track) {
1273 auto it = FindReceiverForTrack(audio_track);
1275 LOG(LS_WARNING) << "RtpReceiver for track with id " << audio_track->id()
1579 AudioTrackInterface* audio_track = remote_stream_factory_->AddAudioTrack( local
1581 CreateAudioReceiver(stream, audio_track, ssrc);
1597 rtc::scoped_refptr<AudioTrackInterface> audio_track = local
1599 if (audio_track) {
1600 audio_track
1257 CreateAudioReceiver(MediaStreamInterface* stream, AudioTrackInterface* audio_track, uint32_t ssrc) argument
1271 DestroyAudioReceiver(MediaStreamInterface* stream, AudioTrackInterface* audio_track) argument
[all...]
/external/webrtc/webrtc/modules/audio_device/android/
H A Daudio_track_jni.cc34 rtc::scoped_ptr<GlobalRef> audio_track)
35 : audio_track_(std::move(audio_track)),
32 JavaAudioTrack( NativeRegistration* native_reg, rtc::scoped_ptr<GlobalRef> audio_track) argument

Completed in 296 milliseconds