OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 virtual ~Channel(); | 144 virtual ~Channel(); |
145 static int32_t CreateChannel( | 145 static int32_t CreateChannel( |
146 Channel*& channel, | 146 Channel*& channel, |
147 int32_t channelId, | 147 int32_t channelId, |
148 uint32_t instanceId, | 148 uint32_t instanceId, |
149 const VoEBase::ChannelConfig& config); | 149 const VoEBase::ChannelConfig& config); |
150 Channel(int32_t channelId, | 150 Channel(int32_t channelId, |
151 uint32_t instanceId, | 151 uint32_t instanceId, |
152 const VoEBase::ChannelConfig& config); | 152 const VoEBase::ChannelConfig& config); |
153 int32_t Init(); | 153 int32_t Init(); |
154 void RegisterLegacyCodecs(); | |
155 void Terminate(); | 154 void Terminate(); |
156 int32_t SetEngineInformation(Statistics& engineStatistics, | 155 int32_t SetEngineInformation(Statistics& engineStatistics, |
157 OutputMixer& outputMixer, | 156 OutputMixer& outputMixer, |
158 ProcessThread& moduleProcessThread, | 157 ProcessThread& moduleProcessThread, |
159 AudioDeviceModule& audioDeviceModule, | 158 AudioDeviceModule& audioDeviceModule, |
160 VoiceEngineObserver* voiceEngineObserver, | 159 VoiceEngineObserver* voiceEngineObserver, |
161 rtc::CriticalSection* callbackCritSect); | 160 rtc::CriticalSection* callbackCritSect); |
162 int32_t UpdateLocalTimeStamp(); | 161 int32_t UpdateLocalTimeStamp(); |
163 | 162 |
164 void SetSink(std::unique_ptr<AudioSinkInterface> sink); | 163 void SetSink(std::unique_ptr<AudioSinkInterface> sink); |
165 | 164 |
166 // TODO(ossu): Don't use! It's only here to confirm that the decoder factory | 165 // TODO(ossu): Don't use! It's only here to confirm that the decoder factory |
167 // passed into AudioReceiveStream is the same as the one set when creating the | 166 // passed into AudioReceiveStream is the same as the one set when creating the |
168 // ADM. Once Channel creation is moved into Audio{Send,Receive}Stream this can | 167 // ADM. Once Channel creation is moved into Audio{Send,Receive}Stream this can |
169 // go. | 168 // go. |
170 const rtc::scoped_refptr<AudioDecoderFactory>& GetAudioDecoderFactory() const; | 169 const rtc::scoped_refptr<AudioDecoderFactory>& GetAudioDecoderFactory() const; |
171 | 170 |
172 void SetReceiveCodecs(const std::map<int, SdpAudioFormat>& codecs); | |
173 | |
174 // API methods | 171 // API methods |
175 | 172 |
176 // VoEBase | 173 // VoEBase |
177 int32_t StartPlayout(); | 174 int32_t StartPlayout(); |
178 int32_t StopPlayout(); | 175 int32_t StopPlayout(); |
179 int32_t StartSend(); | 176 int32_t StartSend(); |
180 int32_t StopSend(); | 177 int32_t StopSend(); |
181 int32_t RegisterVoiceEngineObserver(VoiceEngineObserver& observer); | 178 int32_t RegisterVoiceEngineObserver(VoiceEngineObserver& observer); |
182 int32_t DeRegisterVoiceEngineObserver(); | 179 int32_t DeRegisterVoiceEngineObserver(); |
183 | 180 |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
519 | 516 |
520 rtc::ThreadChecker construction_thread_; | 517 rtc::ThreadChecker construction_thread_; |
521 | 518 |
522 const bool use_twcc_plr_for_ana_; | 519 const bool use_twcc_plr_for_ana_; |
523 }; | 520 }; |
524 | 521 |
525 } // namespace voe | 522 } // namespace voe |
526 } // namespace webrtc | 523 } // namespace webrtc |
527 | 524 |
528 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ | 525 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_H_ |
OLD | NEW |