OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * libjingle | |
3 * Copyright 2015 Google Inc. | |
4 * | |
5 * Redistribution and use in source and binary forms, with or without | |
6 * modification, are permitted provided that the following conditions are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright notice, | |
9 * this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | |
11 * this list of conditions and the following disclaimer in the documentation | |
12 * and/or other materials provided with the distribution. | |
13 * 3. The name of the author may not be used to endorse or promote products | |
14 * derived from this software without specific prior written permission. | |
15 * | |
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | |
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
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 | |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
26 */ | |
27 | |
28 #include "talk/app/webrtc/rtpreceiver.h" | |
29 | |
30 #include "talk/app/webrtc/videosourceinterface.h" | |
31 | |
32 namespace webrtc { | |
33 | |
34 AudioRtpReceiver::AudioRtpReceiver(AudioTrackInterface* track, | |
35 uint32 ssrc, | |
36 const std::string& mid, | |
37 AudioProviderInterface* provider) | |
38 : track_(track), | |
39 ssrc_(ssrc), | |
40 mid_(mid), | |
41 provider_(provider), | |
42 enabled_(track->enabled()) { | |
43 track_->RegisterObserver(this); | |
44 track_->GetSource()->RegisterAudioObserver(this); | |
45 UpdateEnabled(); | |
46 } | |
47 | |
48 AudioRtpReceiver::~AudioRtpReceiver() { | |
49 track_->GetSource()->UnregisterAudioObserver(this); | |
50 track_->UnregisterObserver(this); | |
51 if (provider_) { | |
52 Stop(); | |
53 } | |
54 } | |
55 | |
56 void AudioRtpReceiver::OnChanged() { | |
57 if (enabled_ != track_->enabled()) { | |
58 enabled_ = track_->enabled(); | |
59 UpdateEnabled(); | |
60 } | |
61 } | |
62 | |
63 void AudioRtpReceiver::OnSetVolume(double volume) { | |
64 // When the track is disabled, the volume of the source, which is the | |
65 // corresponding WebRtc Voice Engine channel will be 0. So we do not allow | |
66 // setting the volume to the source when the track is disabled. | |
67 if (track_->enabled()) | |
68 provider_->SetAudioPlayoutVolume(ssrc_, volume); | |
69 } | |
70 | |
71 void AudioRtpReceiver::Stop() { | |
72 provider_->SetAudioPlayout(ssrc_, false, NULL); | |
73 provider_ = nullptr; | |
74 } | |
75 | |
76 void AudioRtpReceiver::UpdateEnabled() { | |
77 if (!provider_) { | |
78 return; | |
79 } | |
80 provider_->SetAudioPlayout(ssrc_, track_->enabled(), track_->GetRenderer()); | |
81 } | |
82 | |
83 VideoRtpReceiver::VideoRtpReceiver(VideoTrackInterface* track, | |
84 uint32 ssrc, | |
85 const std::string& mid, | |
86 VideoProviderInterface* provider) | |
87 : track_(track), ssrc_(ssrc), mid_(mid), provider_(provider) { | |
88 provider_->SetVideoPlayout(ssrc_, true, track_->GetSource()->FrameInput()); | |
pthatcher1
2015/09/17 04:25:46
Can you put a TODO for unifying SetVideoPlayout an
Taylor Brandstetter
2015/09/23 00:10:45
Calling SetVideoSend here was a copy/paste mistake
| |
89 } | |
90 | |
91 VideoRtpReceiver::~VideoRtpReceiver() { | |
92 if (provider_) { | |
93 Stop(); | |
94 } | |
95 } | |
96 | |
97 void VideoRtpReceiver::Stop() { | |
98 // Since cricket::VideoRenderer is not reference counted | |
99 // we need to remove the renderer before we are deleted. | |
100 provider_->SetVideoPlayout(ssrc_, false, nullptr); | |
101 provider_ = nullptr; | |
102 } | |
103 | |
104 void VideoRtpReceiver::UpdateEnabled() { | |
105 if (!provider_) { | |
106 return; | |
107 } | |
108 const cricket::VideoOptions* options = nullptr; | |
109 VideoSourceInterface* source = track_->GetSource(); | |
110 if (track_->enabled() && source) { | |
pthatcher1
2015/09/17 04:25:46
Wait... why do we track the previous track_->enabl
Taylor Brandstetter
2015/09/23 00:10:45
See above comment.
| |
111 options = source->options(); | |
112 } | |
113 provider_->SetVideoSend(ssrc_, track_->enabled(), options); | |
114 } | |
115 | |
116 } // namespace webrtc | |
OLD | NEW |