OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1356 void SetRawAudioSink(std::unique_ptr<webrtc::AudioSinkInterface> sink) { | 1356 void SetRawAudioSink(std::unique_ptr<webrtc::AudioSinkInterface> sink) { |
1357 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 1357 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
1358 stream_->SetSink(std::move(sink)); | 1358 stream_->SetSink(std::move(sink)); |
1359 } | 1359 } |
1360 | 1360 |
1361 void SetOutputVolume(double volume) { | 1361 void SetOutputVolume(double volume) { |
1362 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 1362 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
1363 stream_->SetGain(volume); | 1363 stream_->SetGain(volume); |
1364 } | 1364 } |
1365 | 1365 |
1366 void SetPlayout(bool playout) { | |
1367 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | |
1368 RTC_DCHECK(stream_); | |
1369 if (playout) { | |
1370 LOG(LS_INFO) << "Starting playout for channel #" << channel(); | |
1371 stream_->Start(); | |
1372 } else { | |
1373 LOG(LS_INFO) << "Stopping playout for channel #" << channel(); | |
1374 stream_->Stop(); | |
1375 } | |
1376 } | |
1377 | |
aleloi
2016/08/03 13:09:58
The wrapper audio stream tells the real stream to
| |
1366 private: | 1378 private: |
1367 void RecreateAudioReceiveStream( | 1379 void RecreateAudioReceiveStream( |
1368 uint32_t local_ssrc, | 1380 uint32_t local_ssrc, |
1369 bool use_transport_cc, | 1381 bool use_transport_cc, |
1370 bool use_nack, | 1382 bool use_nack, |
1371 const std::vector<webrtc::RtpExtension>& extensions) { | 1383 const std::vector<webrtc::RtpExtension>& extensions) { |
1372 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 1384 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
1373 if (stream_) { | 1385 if (stream_) { |
1374 call_->DestroyAudioReceiveStream(stream_); | 1386 call_->DestroyAudioReceiveStream(stream_); |
1375 stream_ = nullptr; | 1387 stream_ = nullptr; |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1938 return ChangePlayout(desired_playout_); | 1950 return ChangePlayout(desired_playout_); |
1939 } | 1951 } |
1940 | 1952 |
1941 bool WebRtcVoiceMediaChannel::ChangePlayout(bool playout) { | 1953 bool WebRtcVoiceMediaChannel::ChangePlayout(bool playout) { |
1942 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::ChangePlayout"); | 1954 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::ChangePlayout"); |
1943 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 1955 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
1944 if (playout_ == playout) { | 1956 if (playout_ == playout) { |
1945 return true; | 1957 return true; |
1946 } | 1958 } |
1947 | 1959 |
1948 for (const auto& ch : recv_streams_) { | 1960 for (const auto& kv : recv_streams_) { |
1949 if (!SetPlayout(ch.second->channel(), playout)) { | 1961 kv.second->SetPlayout(playout); |
1950 LOG(LS_ERROR) << "SetPlayout " << playout << " on channel " | |
1951 << ch.second->channel() << " failed"; | |
1952 return false; | |
1953 } | |
1954 } | 1962 } |
1955 playout_ = playout; | 1963 playout_ = playout; |
1956 return true; | 1964 return true; |
1957 } | 1965 } |
1958 | 1966 |
1959 void WebRtcVoiceMediaChannel::SetSend(bool send) { | 1967 void WebRtcVoiceMediaChannel::SetSend(bool send) { |
1960 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::SetSend"); | 1968 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::SetSend"); |
1961 if (send_ == send) { | 1969 if (send_ == send) { |
1962 return; | 1970 return; |
1963 } | 1971 } |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2173 << " is associated with channel #" << send_channel << "."; | 2181 << " is associated with channel #" << send_channel << "."; |
2174 } | 2182 } |
2175 | 2183 |
2176 recv_streams_.insert(std::make_pair( | 2184 recv_streams_.insert(std::make_pair( |
2177 ssrc, new WebRtcAudioReceiveStream(channel, ssrc, receiver_reports_ssrc_, | 2185 ssrc, new WebRtcAudioReceiveStream(channel, ssrc, receiver_reports_ssrc_, |
2178 recv_transport_cc_enabled_, | 2186 recv_transport_cc_enabled_, |
2179 recv_nack_enabled_, | 2187 recv_nack_enabled_, |
2180 sp.sync_label, recv_rtp_extensions_, | 2188 sp.sync_label, recv_rtp_extensions_, |
2181 call_, this, | 2189 call_, this, |
2182 engine()->decoder_factory_))); | 2190 engine()->decoder_factory_))); |
2183 SetPlayout(channel, playout_); | 2191 recv_streams_[ssrc]->SetPlayout(playout_); |
2184 | 2192 |
2185 return true; | 2193 return true; |
2186 } | 2194 } |
2187 | 2195 |
2188 bool WebRtcVoiceMediaChannel::RemoveRecvStream(uint32_t ssrc) { | 2196 bool WebRtcVoiceMediaChannel::RemoveRecvStream(uint32_t ssrc) { |
2189 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::RemoveRecvStream"); | 2197 TRACE_EVENT0("webrtc", "WebRtcVoiceMediaChannel::RemoveRecvStream"); |
2190 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 2198 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
2191 LOG(LS_INFO) << "RemoveRecvStream: " << ssrc; | 2199 LOG(LS_INFO) << "RemoveRecvStream: " << ssrc; |
2192 | 2200 |
2193 const auto it = recv_streams_.find(ssrc); | 2201 const auto it = recv_streams_.find(ssrc); |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2607 } | 2615 } |
2608 | 2616 |
2609 int WebRtcVoiceMediaChannel::GetSendChannelId(uint32_t ssrc) const { | 2617 int WebRtcVoiceMediaChannel::GetSendChannelId(uint32_t ssrc) const { |
2610 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); | 2618 RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
2611 const auto it = send_streams_.find(ssrc); | 2619 const auto it = send_streams_.find(ssrc); |
2612 if (it != send_streams_.end()) { | 2620 if (it != send_streams_.end()) { |
2613 return it->second->channel(); | 2621 return it->second->channel(); |
2614 } | 2622 } |
2615 return -1; | 2623 return -1; |
2616 } | 2624 } |
2617 | |
2618 bool WebRtcVoiceMediaChannel::SetPlayout(int channel, bool playout) { | |
2619 if (playout) { | |
2620 LOG(LS_INFO) << "Starting playout for channel #" << channel; | |
2621 if (engine()->voe()->base()->StartPlayout(channel) == -1) { | |
2622 LOG_RTCERR1(StartPlayout, channel); | |
2623 return false; | |
2624 } | |
2625 } else { | |
2626 LOG(LS_INFO) << "Stopping playout for channel #" << channel; | |
2627 engine()->voe()->base()->StopPlayout(channel); | |
2628 } | |
2629 return true; | |
2630 } | |
2631 } // namespace cricket | 2625 } // namespace cricket |
2632 | 2626 |
2633 #endif // HAVE_WEBRTC_VOICE | 2627 #endif // HAVE_WEBRTC_VOICE |
OLD | NEW |