OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 11 matching lines...) Loading... |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 #include "talk/app/webrtc/remoteaudiosource.h" | 28 #include "talk/app/webrtc/remoteaudiosource.h" |
29 | 29 |
30 #include <algorithm> | 30 #include <algorithm> |
31 #include <functional> | 31 #include <functional> |
| 32 #include <utility> |
32 | 33 |
| 34 #include "talk/app/webrtc/mediastreamprovider.h" |
| 35 #include "webrtc/base/checks.h" |
33 #include "webrtc/base/logging.h" | 36 #include "webrtc/base/logging.h" |
| 37 #include "webrtc/base/thread.h" |
34 | 38 |
35 namespace webrtc { | 39 namespace webrtc { |
36 | 40 |
37 rtc::scoped_refptr<RemoteAudioSource> RemoteAudioSource::Create() { | 41 class RemoteAudioSource::MessageHandler : public rtc::MessageHandler { |
38 return new rtc::RefCountedObject<RemoteAudioSource>(); | 42 public: |
| 43 MessageHandler(RemoteAudioSource* source) : source_(source) {} |
| 44 |
| 45 private: |
| 46 ~MessageHandler() override {} |
| 47 |
| 48 void OnMessage(rtc::Message* msg) override { |
| 49 source_->OnMessage(msg); |
| 50 delete this; |
| 51 } |
| 52 |
| 53 const rtc::scoped_refptr<RemoteAudioSource> source_; |
| 54 RTC_DISALLOW_COPY_AND_ASSIGN(MessageHandler); |
| 55 }; |
| 56 |
| 57 class RemoteAudioSource::Sink : public AudioSinkInterface { |
| 58 public: |
| 59 Sink(RemoteAudioSource* source) : source_(source) {} |
| 60 ~Sink() override { source_->OnAudioProviderGone(); } |
| 61 |
| 62 private: |
| 63 void OnData(const AudioSinkInterface::Data& audio) override { |
| 64 if (source_) |
| 65 source_->OnData(audio); |
| 66 } |
| 67 |
| 68 const rtc::scoped_refptr<RemoteAudioSource> source_; |
| 69 }; |
| 70 |
| 71 rtc::scoped_refptr<RemoteAudioSource> RemoteAudioSource::Create( |
| 72 uint32_t ssrc, |
| 73 AudioProviderInterface* provider) { |
| 74 rtc::scoped_refptr<RemoteAudioSource> ret( |
| 75 new rtc::RefCountedObject<RemoteAudioSource>()); |
| 76 ret->Initialize(ssrc, provider); |
| 77 return ret; |
39 } | 78 } |
40 | 79 |
41 RemoteAudioSource::RemoteAudioSource() { | 80 RemoteAudioSource::RemoteAudioSource() |
| 81 : main_thread_(rtc::Thread::Current()), |
| 82 state_(MediaSourceInterface::kLive) { |
| 83 RTC_DCHECK(main_thread_); |
42 } | 84 } |
43 | 85 |
44 RemoteAudioSource::~RemoteAudioSource() { | 86 RemoteAudioSource::~RemoteAudioSource() { |
45 ASSERT(audio_observers_.empty()); | 87 RTC_DCHECK(main_thread_->IsCurrent()); |
| 88 RTC_DCHECK(audio_observers_.empty()); |
| 89 RTC_DCHECK(sinks_.empty()); |
| 90 } |
| 91 |
| 92 void RemoteAudioSource::Initialize(uint32_t ssrc, |
| 93 AudioProviderInterface* provider) { |
| 94 // To make sure we always get notified when the provider goes out of scope, |
| 95 // we register for callbacks here and not on demand in AddSink. |
| 96 if (provider) { // May be null in tests. |
| 97 provider->SetRawAudioSink( |
| 98 ssrc, std::move(rtc::scoped_ptr<AudioSinkInterface>(new Sink(this)))); |
| 99 } |
46 } | 100 } |
47 | 101 |
48 MediaSourceInterface::SourceState RemoteAudioSource::state() const { | 102 MediaSourceInterface::SourceState RemoteAudioSource::state() const { |
49 return MediaSourceInterface::kLive; | 103 return state_; |
50 } | 104 } |
51 | 105 |
52 void RemoteAudioSource::SetVolume(double volume) { | 106 void RemoteAudioSource::SetVolume(double volume) { |
53 ASSERT(volume >= 0 && volume <= 10); | 107 RTC_DCHECK(volume >= 0 && volume <= 10); |
54 for (AudioObserverList::iterator it = audio_observers_.begin(); | 108 for (auto* observer : audio_observers_) |
55 it != audio_observers_.end(); ++it) { | 109 observer->OnSetVolume(volume); |
56 (*it)->OnSetVolume(volume); | |
57 } | |
58 } | 110 } |
59 | 111 |
60 void RemoteAudioSource::RegisterAudioObserver(AudioObserver* observer) { | 112 void RemoteAudioSource::RegisterAudioObserver(AudioObserver* observer) { |
61 ASSERT(observer != NULL); | 113 RTC_DCHECK(observer != NULL); |
62 ASSERT(std::find(audio_observers_.begin(), audio_observers_.end(), | 114 RTC_DCHECK(std::find(audio_observers_.begin(), audio_observers_.end(), |
63 observer) == audio_observers_.end()); | 115 observer) == audio_observers_.end()); |
64 audio_observers_.push_back(observer); | 116 audio_observers_.push_back(observer); |
65 } | 117 } |
66 | 118 |
67 void RemoteAudioSource::UnregisterAudioObserver(AudioObserver* observer) { | 119 void RemoteAudioSource::UnregisterAudioObserver(AudioObserver* observer) { |
68 ASSERT(observer != NULL); | 120 RTC_DCHECK(observer != NULL); |
69 audio_observers_.remove(observer); | 121 audio_observers_.remove(observer); |
70 } | 122 } |
71 | 123 |
| 124 void RemoteAudioSource::AddSink(AudioTrackSinkInterface* sink) { |
| 125 RTC_DCHECK(main_thread_->IsCurrent()); |
| 126 RTC_DCHECK(sink); |
| 127 |
| 128 if (state_ != MediaSourceInterface::kLive) { |
| 129 LOG(LS_ERROR) << "Can't register sink as the source isn't live."; |
| 130 return; |
| 131 } |
| 132 |
| 133 rtc::CritScope lock(&sink_lock_); |
| 134 RTC_DCHECK(std::find(sinks_.begin(), sinks_.end(), sink) == sinks_.end()); |
| 135 sinks_.push_back(sink); |
| 136 } |
| 137 |
| 138 void RemoteAudioSource::RemoveSink(AudioTrackSinkInterface* sink) { |
| 139 RTC_DCHECK(main_thread_->IsCurrent()); |
| 140 RTC_DCHECK(sink); |
| 141 |
| 142 rtc::CritScope lock(&sink_lock_); |
| 143 sinks_.remove(sink); |
| 144 } |
| 145 |
| 146 void RemoteAudioSource::OnData(const AudioSinkInterface::Data& audio) { |
| 147 // Called on the externally-owned audio callback thread, via/from webrtc. |
| 148 rtc::CritScope lock(&sink_lock_); |
| 149 for (auto* sink : sinks_) { |
| 150 sink->OnData(audio.data, 16, audio.sample_rate, audio.channels, |
| 151 audio.samples_per_channel); |
| 152 } |
| 153 } |
| 154 |
| 155 void RemoteAudioSource::OnAudioProviderGone() { |
| 156 main_thread_->Post(new MessageHandler(this)); |
| 157 } |
| 158 |
| 159 void RemoteAudioSource::OnMessage(rtc::Message* msg) { |
| 160 RTC_DCHECK(main_thread_->IsCurrent()); |
| 161 sinks_.clear(); |
| 162 state_ = MediaSourceInterface::kEnded; |
| 163 FireOnChanged(); |
| 164 } |
| 165 |
72 } // namespace webrtc | 166 } // namespace webrtc |
OLD | NEW |