2015-04-29 15:24:01 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-09-25 13:58:30 +02:00
|
|
|
#include "webrtc/audio/audio_receive_stream.h"
|
2015-04-29 15:24:01 +02:00
|
|
|
|
|
|
|
|
#include <string>
|
2015-12-12 01:37:01 +01:00
|
|
|
#include <utility>
|
2015-04-29 15:24:01 +02:00
|
|
|
|
2016-08-31 07:33:05 -07:00
|
|
|
#include "webrtc/api/call/audio_sink.h"
|
2016-11-14 11:30:07 -08:00
|
|
|
#include "webrtc/audio/audio_send_stream.h"
|
2015-11-06 15:34:49 -08:00
|
|
|
#include "webrtc/audio/audio_state.h"
|
2015-10-22 10:49:27 +02:00
|
|
|
#include "webrtc/audio/conversion.h"
|
2015-04-29 15:24:01 +02:00
|
|
|
#include "webrtc/base/checks.h"
|
2015-10-15 05:22:13 -07:00
|
|
|
#include "webrtc/base/logging.h"
|
2016-05-10 16:31:47 +02:00
|
|
|
#include "webrtc/base/timeutils.h"
|
2015-04-29 15:24:01 +02:00
|
|
|
#include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h"
|
2017-01-31 03:58:40 -08:00
|
|
|
#include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h"
|
|
|
|
|
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
|
2015-11-25 08:16:52 -08:00
|
|
|
#include "webrtc/voice_engine/channel_proxy.h"
|
2015-10-22 10:49:27 +02:00
|
|
|
#include "webrtc/voice_engine/include/voe_base.h"
|
2015-11-25 08:16:52 -08:00
|
|
|
#include "webrtc/voice_engine/voice_engine_impl.h"
|
2015-04-29 15:24:01 +02:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
2016-01-12 13:55:00 +01:00
|
|
|
|
2015-04-29 15:24:01 +02:00
|
|
|
std::string AudioReceiveStream::Config::Rtp::ToString() const {
|
|
|
|
|
std::stringstream ss;
|
|
|
|
|
ss << "{remote_ssrc: " << remote_ssrc;
|
2015-10-27 03:35:21 -07:00
|
|
|
ss << ", local_ssrc: " << local_ssrc;
|
2016-06-14 12:13:00 -07:00
|
|
|
ss << ", transport_cc: " << (transport_cc ? "on" : "off");
|
|
|
|
|
ss << ", nack: " << nack.ToString();
|
2015-04-29 15:24:01 +02:00
|
|
|
ss << ", extensions: [";
|
|
|
|
|
for (size_t i = 0; i < extensions.size(); ++i) {
|
|
|
|
|
ss << extensions[i].ToString();
|
2015-10-22 10:49:27 +02:00
|
|
|
if (i != extensions.size() - 1) {
|
2015-04-29 15:24:01 +02:00
|
|
|
ss << ", ";
|
2015-10-22 10:49:27 +02:00
|
|
|
}
|
2015-04-29 15:24:01 +02:00
|
|
|
}
|
|
|
|
|
ss << ']';
|
|
|
|
|
ss << '}';
|
|
|
|
|
return ss.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string AudioReceiveStream::Config::ToString() const {
|
|
|
|
|
std::stringstream ss;
|
|
|
|
|
ss << "{rtp: " << rtp.ToString();
|
2015-10-27 03:35:21 -07:00
|
|
|
ss << ", rtcp_send_transport: "
|
2017-02-26 04:18:12 -08:00
|
|
|
<< (rtcp_send_transport ? "(Transport)" : "null");
|
2015-07-15 08:02:58 -07:00
|
|
|
ss << ", voe_channel_id: " << voe_channel_id;
|
2015-10-22 10:49:27 +02:00
|
|
|
if (!sync_group.empty()) {
|
2015-07-15 08:02:58 -07:00
|
|
|
ss << ", sync_group: " << sync_group;
|
2015-10-22 10:49:27 +02:00
|
|
|
}
|
2015-04-29 15:24:01 +02:00
|
|
|
ss << '}';
|
|
|
|
|
return ss.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace internal {
|
|
|
|
|
AudioReceiveStream::AudioReceiveStream(
|
2016-11-30 03:35:20 -08:00
|
|
|
PacketRouter* packet_router,
|
2015-11-06 15:34:49 -08:00
|
|
|
const webrtc::AudioReceiveStream::Config& config,
|
2016-07-04 07:06:55 -07:00
|
|
|
const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
|
|
|
|
|
webrtc::RtcEventLog* event_log)
|
2017-02-07 01:18:43 -08:00
|
|
|
: config_(config),
|
2017-02-06 13:39:38 -08:00
|
|
|
audio_state_(audio_state) {
|
2015-10-15 05:22:13 -07:00
|
|
|
LOG(LS_INFO) << "AudioReceiveStream: " << config_.ToString();
|
2015-11-06 15:34:49 -08:00
|
|
|
RTC_DCHECK_NE(config_.voe_channel_id, -1);
|
|
|
|
|
RTC_DCHECK(audio_state_.get());
|
2016-11-30 03:35:20 -08:00
|
|
|
RTC_DCHECK(packet_router);
|
2015-11-20 09:59:34 -08:00
|
|
|
|
2017-01-31 03:58:40 -08:00
|
|
|
module_process_thread_checker_.DetachFromThread();
|
|
|
|
|
|
2015-11-25 08:16:52 -08:00
|
|
|
VoiceEngineImpl* voe_impl = static_cast<VoiceEngineImpl*>(voice_engine());
|
2016-02-23 10:46:32 -08:00
|
|
|
channel_proxy_ = voe_impl->GetChannelProxy(config_.voe_channel_id);
|
2016-07-04 07:06:55 -07:00
|
|
|
channel_proxy_->SetRtcEventLog(event_log);
|
2015-11-25 08:16:52 -08:00
|
|
|
channel_proxy_->SetLocalSSRC(config.rtp.local_ssrc);
|
2016-06-14 12:13:00 -07:00
|
|
|
// TODO(solenberg): Config NACK history window (which is a packet count),
|
|
|
|
|
// using the actual packet size for the configured codec.
|
|
|
|
|
channel_proxy_->SetNACKStatus(config_.rtp.nack.rtp_history_ms != 0,
|
|
|
|
|
config_.rtp.nack.rtp_history_ms / 20);
|
2016-04-29 00:57:13 -07:00
|
|
|
|
2016-06-13 07:34:51 -07:00
|
|
|
// TODO(ossu): This is where we'd like to set the decoder factory to
|
|
|
|
|
// use. However, since it needs to be included when constructing Channel, we
|
|
|
|
|
// cannot do that until we're able to move Channel ownership into the
|
|
|
|
|
// Audio{Send,Receive}Streams. The best we can do is check that we're not
|
|
|
|
|
// trying to use two different factories using the different interfaces.
|
|
|
|
|
RTC_CHECK(config.decoder_factory);
|
|
|
|
|
RTC_CHECK_EQ(config.decoder_factory,
|
|
|
|
|
channel_proxy_->GetAudioDecoderFactory());
|
|
|
|
|
|
2016-04-29 00:57:13 -07:00
|
|
|
channel_proxy_->RegisterExternalTransport(config.rtcp_send_transport);
|
2017-03-27 07:15:49 -07:00
|
|
|
channel_proxy_->SetReceiveCodecs(config.decoder_map);
|
2017-01-19 07:03:59 -08:00
|
|
|
|
2015-11-20 09:59:34 -08:00
|
|
|
for (const auto& extension : config.rtp.extensions) {
|
2016-05-26 11:24:55 -07:00
|
|
|
if (extension.uri == RtpExtension::kAudioLevelUri) {
|
2015-11-27 10:46:42 -08:00
|
|
|
channel_proxy_->SetReceiveAudioLevelIndicationStatus(true, extension.id);
|
2016-05-26 11:24:55 -07:00
|
|
|
} else if (extension.uri == RtpExtension::kTransportSequenceNumberUri) {
|
2016-01-21 06:32:43 -08:00
|
|
|
channel_proxy_->EnableReceiveTransportSequenceNumber(extension.id);
|
2015-04-29 15:24:01 +02:00
|
|
|
} else {
|
|
|
|
|
RTC_NOTREACHED() << "Unsupported RTP extension.";
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-12 13:55:00 +01:00
|
|
|
// Configure bandwidth estimation.
|
2016-11-30 03:35:20 -08:00
|
|
|
channel_proxy_->RegisterReceiverCongestionControlObjects(packet_router);
|
2015-04-29 15:24:01 +02:00
|
|
|
}
|
|
|
|
|
|
2015-10-15 05:22:13 -07:00
|
|
|
AudioReceiveStream::~AudioReceiveStream() {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2015-10-15 05:22:13 -07:00
|
|
|
LOG(LS_INFO) << "~AudioReceiveStream: " << config_.ToString();
|
2016-11-22 06:42:53 -08:00
|
|
|
if (playing_) {
|
|
|
|
|
Stop();
|
|
|
|
|
}
|
2016-11-14 11:30:07 -08:00
|
|
|
channel_proxy_->DisassociateSendChannel();
|
2016-04-29 00:57:13 -07:00
|
|
|
channel_proxy_->DeRegisterExternalTransport();
|
2016-02-01 04:39:55 -08:00
|
|
|
channel_proxy_->ResetCongestionControlObjects();
|
2016-07-04 07:06:55 -07:00
|
|
|
channel_proxy_->SetRtcEventLog(nullptr);
|
2015-10-15 05:22:13 -07:00
|
|
|
}
|
|
|
|
|
|
2015-11-20 09:59:34 -08:00
|
|
|
void AudioReceiveStream::Start() {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-11-22 06:42:53 -08:00
|
|
|
if (playing_) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int error = SetVoiceEnginePlayout(true);
|
2016-08-04 05:28:21 -07:00
|
|
|
if (error != 0) {
|
|
|
|
|
LOG(LS_ERROR) << "AudioReceiveStream::Start failed with error: " << error;
|
2016-11-22 06:42:53 -08:00
|
|
|
return;
|
2016-08-04 05:28:21 -07:00
|
|
|
}
|
2016-11-22 06:42:53 -08:00
|
|
|
|
|
|
|
|
if (!audio_state()->mixer()->AddSource(this)) {
|
|
|
|
|
LOG(LS_ERROR) << "Failed to add source to mixer.";
|
|
|
|
|
SetVoiceEnginePlayout(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
playing_ = true;
|
2015-11-20 09:59:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AudioReceiveStream::Stop() {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-11-22 06:42:53 -08:00
|
|
|
if (!playing_) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
playing_ = false;
|
|
|
|
|
|
|
|
|
|
audio_state()->mixer()->RemoveSource(this);
|
|
|
|
|
SetVoiceEnginePlayout(false);
|
2015-11-20 09:59:34 -08:00
|
|
|
}
|
|
|
|
|
|
2015-06-08 13:04:56 +02:00
|
|
|
webrtc::AudioReceiveStream::Stats AudioReceiveStream::GetStats() const {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2015-10-22 10:49:27 +02:00
|
|
|
webrtc::AudioReceiveStream::Stats stats;
|
|
|
|
|
stats.remote_ssrc = config_.rtp.remote_ssrc;
|
2015-11-27 10:46:42 -08:00
|
|
|
|
|
|
|
|
webrtc::CallStatistics call_stats = channel_proxy_->GetRTCPStatistics();
|
2017-02-06 12:53:57 -08:00
|
|
|
// TODO(solenberg): Don't return here if we can't get the codec - return the
|
|
|
|
|
// stats we *can* get.
|
2015-10-27 03:35:21 -07:00
|
|
|
webrtc::CodecInst codec_inst = {0};
|
2017-02-06 12:53:57 -08:00
|
|
|
if (!channel_proxy_->GetRecCodec(&codec_inst)) {
|
2015-10-22 10:49:27 +02:00
|
|
|
return stats;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-27 03:35:21 -07:00
|
|
|
stats.bytes_rcvd = call_stats.bytesReceived;
|
|
|
|
|
stats.packets_rcvd = call_stats.packetsReceived;
|
|
|
|
|
stats.packets_lost = call_stats.cumulativeLost;
|
|
|
|
|
stats.fraction_lost = Q8ToFloat(call_stats.fractionLost);
|
2015-11-16 09:48:04 -08:00
|
|
|
stats.capture_start_ntp_time_ms = call_stats.capture_start_ntp_time_ms_;
|
2015-10-27 03:35:21 -07:00
|
|
|
if (codec_inst.pltype != -1) {
|
|
|
|
|
stats.codec_name = codec_inst.plname;
|
2016-11-17 23:43:29 -08:00
|
|
|
stats.codec_payload_type = rtc::Optional<int>(codec_inst.pltype);
|
2015-10-22 10:49:27 +02:00
|
|
|
}
|
2015-10-27 03:35:21 -07:00
|
|
|
stats.ext_seqnum = call_stats.extendedMax;
|
|
|
|
|
if (codec_inst.plfreq / 1000 > 0) {
|
|
|
|
|
stats.jitter_ms = call_stats.jitterSamples / (codec_inst.plfreq / 1000);
|
2015-10-22 10:49:27 +02:00
|
|
|
}
|
2015-11-27 10:46:42 -08:00
|
|
|
stats.delay_estimate_ms = channel_proxy_->GetDelayEstimate();
|
|
|
|
|
stats.audio_level = channel_proxy_->GetSpeechOutputLevelFullRange();
|
2015-10-22 10:49:27 +02:00
|
|
|
|
2015-11-16 09:48:04 -08:00
|
|
|
// Get jitter buffer and total delay (alg + jitter + playout) stats.
|
2015-11-27 10:46:42 -08:00
|
|
|
auto ns = channel_proxy_->GetNetworkStatistics();
|
2015-11-16 09:48:04 -08:00
|
|
|
stats.jitter_buffer_ms = ns.currentBufferSize;
|
|
|
|
|
stats.jitter_buffer_preferred_ms = ns.preferredBufferSize;
|
|
|
|
|
stats.expand_rate = Q14ToFloat(ns.currentExpandRate);
|
|
|
|
|
stats.speech_expand_rate = Q14ToFloat(ns.currentSpeechExpandRate);
|
|
|
|
|
stats.secondary_decoded_rate = Q14ToFloat(ns.currentSecondaryDecodedRate);
|
|
|
|
|
stats.accelerate_rate = Q14ToFloat(ns.currentAccelerateRate);
|
|
|
|
|
stats.preemptive_expand_rate = Q14ToFloat(ns.currentPreemptiveRate);
|
2015-10-22 10:49:27 +02:00
|
|
|
|
2015-11-27 10:46:42 -08:00
|
|
|
auto ds = channel_proxy_->GetDecodingCallStatistics();
|
2015-11-16 09:48:04 -08:00
|
|
|
stats.decoding_calls_to_silence_generator = ds.calls_to_silence_generator;
|
|
|
|
|
stats.decoding_calls_to_neteq = ds.calls_to_neteq;
|
|
|
|
|
stats.decoding_normal = ds.decoded_normal;
|
|
|
|
|
stats.decoding_plc = ds.decoded_plc;
|
|
|
|
|
stats.decoding_cng = ds.decoded_cng;
|
|
|
|
|
stats.decoding_plc_cng = ds.decoded_plc_cng;
|
2016-09-20 01:47:12 -07:00
|
|
|
stats.decoding_muted_output = ds.decoded_muted_output;
|
2015-10-22 10:49:27 +02:00
|
|
|
|
|
|
|
|
return stats;
|
2015-06-08 13:04:56 +02:00
|
|
|
}
|
|
|
|
|
|
2017-03-01 17:02:23 -08:00
|
|
|
int AudioReceiveStream::GetOutputLevel() const {
|
|
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
|
|
|
|
return channel_proxy_->GetSpeechOutputLevel();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-23 10:46:32 -08:00
|
|
|
void AudioReceiveStream::SetSink(std::unique_ptr<AudioSinkInterface> sink) {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-02-23 10:46:32 -08:00
|
|
|
channel_proxy_->SetSink(std::move(sink));
|
2015-12-12 01:37:01 +01:00
|
|
|
}
|
|
|
|
|
|
2016-06-17 08:30:54 -07:00
|
|
|
void AudioReceiveStream::SetGain(float gain) {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-06-17 08:30:54 -07:00
|
|
|
channel_proxy_->SetChannelOutputVolumeScaling(gain);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 03:58:40 -08:00
|
|
|
AudioMixer::Source::AudioFrameInfo AudioReceiveStream::GetAudioFrameWithInfo(
|
|
|
|
|
int sample_rate_hz,
|
|
|
|
|
AudioFrame* audio_frame) {
|
|
|
|
|
return channel_proxy_->GetAudioFrameWithInfo(sample_rate_hz, audio_frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AudioReceiveStream::Ssrc() const {
|
|
|
|
|
return config_.rtp.remote_ssrc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AudioReceiveStream::PreferredSampleRate() const {
|
|
|
|
|
return channel_proxy_->NeededFrequency();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AudioReceiveStream::id() const {
|
|
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
|
|
|
|
return config_.rtp.remote_ssrc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rtc::Optional<Syncable::Info> AudioReceiveStream::GetInfo() const {
|
|
|
|
|
RTC_DCHECK_RUN_ON(&module_process_thread_checker_);
|
|
|
|
|
Syncable::Info info;
|
|
|
|
|
|
|
|
|
|
RtpRtcp* rtp_rtcp = nullptr;
|
|
|
|
|
RtpReceiver* rtp_receiver = nullptr;
|
|
|
|
|
channel_proxy_->GetRtpRtcp(&rtp_rtcp, &rtp_receiver);
|
|
|
|
|
RTC_DCHECK(rtp_rtcp);
|
|
|
|
|
RTC_DCHECK(rtp_receiver);
|
|
|
|
|
|
|
|
|
|
if (!rtp_receiver->Timestamp(&info.latest_received_capture_timestamp)) {
|
|
|
|
|
return rtc::Optional<Syncable::Info>();
|
|
|
|
|
}
|
|
|
|
|
if (!rtp_receiver->LastReceivedTimeMs(&info.latest_receive_time_ms)) {
|
|
|
|
|
return rtc::Optional<Syncable::Info>();
|
|
|
|
|
}
|
|
|
|
|
if (rtp_rtcp->RemoteNTP(&info.capture_time_ntp_secs,
|
|
|
|
|
&info.capture_time_ntp_frac,
|
|
|
|
|
nullptr,
|
|
|
|
|
nullptr,
|
|
|
|
|
&info.capture_time_source_clock) != 0) {
|
|
|
|
|
return rtc::Optional<Syncable::Info>();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-15 00:42:31 -08:00
|
|
|
info.current_delay_ms = channel_proxy_->GetDelayEstimate();
|
2017-01-31 03:58:40 -08:00
|
|
|
return rtc::Optional<Syncable::Info>(info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint32_t AudioReceiveStream::GetPlayoutTimestamp() const {
|
|
|
|
|
// Called on video capture thread.
|
|
|
|
|
return channel_proxy_->GetPlayoutTimestamp();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AudioReceiveStream::SetMinimumPlayoutDelay(int delay_ms) {
|
|
|
|
|
RTC_DCHECK_RUN_ON(&module_process_thread_checker_);
|
|
|
|
|
return channel_proxy_->SetMinimumPlayoutDelay(delay_ms);
|
2015-10-15 05:22:13 -07:00
|
|
|
}
|
|
|
|
|
|
2016-11-14 11:30:07 -08:00
|
|
|
void AudioReceiveStream::AssociateSendStream(AudioSendStream* send_stream) {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-11-14 11:30:07 -08:00
|
|
|
if (send_stream) {
|
|
|
|
|
VoiceEngineImpl* voe_impl = static_cast<VoiceEngineImpl*>(voice_engine());
|
|
|
|
|
std::unique_ptr<voe::ChannelProxy> send_channel_proxy =
|
|
|
|
|
voe_impl->GetChannelProxy(send_stream->config().voe_channel_id);
|
|
|
|
|
channel_proxy_->AssociateSendChannel(*send_channel_proxy.get());
|
|
|
|
|
} else {
|
|
|
|
|
channel_proxy_->DisassociateSendChannel();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-01 20:18:34 -07:00
|
|
|
void AudioReceiveStream::SignalNetworkState(NetworkState state) {
|
2017-01-31 03:58:40 -08:00
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
2016-05-01 20:18:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AudioReceiveStream::DeliverRtcp(const uint8_t* packet, size_t length) {
|
|
|
|
|
// TODO(solenberg): Tests call this function on a network thread, libjingle
|
|
|
|
|
// calls on the worker thread. We should move towards always using a network
|
|
|
|
|
// thread. Then this check can be enabled.
|
|
|
|
|
// RTC_DCHECK(!thread_checker_.CalledOnValidThread());
|
|
|
|
|
return channel_proxy_->ReceivedRTCPPacket(packet, length);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-21 06:28:10 -08:00
|
|
|
void AudioReceiveStream::OnRtpPacket(const RtpPacketReceived& packet) {
|
2016-05-01 20:18:34 -07:00
|
|
|
// TODO(solenberg): Tests call this function on a network thread, libjingle
|
|
|
|
|
// calls on the worker thread. We should move towards always using a network
|
|
|
|
|
// thread. Then this check can be enabled.
|
|
|
|
|
// RTC_DCHECK(!thread_checker_.CalledOnValidThread());
|
2017-02-21 06:28:10 -08:00
|
|
|
channel_proxy_->OnRtpPacket(packet);
|
2016-05-01 20:18:34 -07:00
|
|
|
}
|
|
|
|
|
|
2017-01-31 03:58:40 -08:00
|
|
|
const webrtc::AudioReceiveStream::Config& AudioReceiveStream::config() const {
|
|
|
|
|
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
|
|
|
|
|
return config_;
|
2016-10-31 03:26:40 -07:00
|
|
|
}
|
|
|
|
|
|
2017-01-31 03:58:40 -08:00
|
|
|
VoiceEngine* AudioReceiveStream::voice_engine() const {
|
|
|
|
|
auto* voice_engine = audio_state()->voice_engine();
|
|
|
|
|
RTC_DCHECK(voice_engine);
|
|
|
|
|
return voice_engine;
|
2016-10-20 06:32:39 -07:00
|
|
|
}
|
|
|
|
|
|
2016-11-22 06:42:53 -08:00
|
|
|
internal::AudioState* AudioReceiveStream::audio_state() const {
|
|
|
|
|
auto* audio_state = static_cast<internal::AudioState*>(audio_state_.get());
|
|
|
|
|
RTC_DCHECK(audio_state);
|
|
|
|
|
return audio_state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int AudioReceiveStream::SetVoiceEnginePlayout(bool playout) {
|
|
|
|
|
ScopedVoEInterface<VoEBase> base(voice_engine());
|
|
|
|
|
if (playout) {
|
|
|
|
|
return base->StartPlayout(config_.voe_channel_id);
|
|
|
|
|
} else {
|
|
|
|
|
return base->StopPlayout(config_.voe_channel_id);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-29 15:24:01 +02:00
|
|
|
} // namespace internal
|
|
|
|
|
} // namespace webrtc
|