| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 |
| 11 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H | 11 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |
| 12 #define WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H | 12 #define WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
| 18 #include "webrtc/base/criticalsection.h" | 18 #include "webrtc/base/criticalsection.h" |
| 19 #include "webrtc/base/scoped_ref_ptr.h" | 19 #include "webrtc/base/scoped_ref_ptr.h" |
| 20 #include "webrtc/call/rtc_event_log.h" |
| 20 #include "webrtc/system_wrappers/include/atomic32.h" | 21 #include "webrtc/system_wrappers/include/atomic32.h" |
| 21 #include "webrtc/typedefs.h" | 22 #include "webrtc/typedefs.h" |
| 22 | 23 |
| 23 namespace webrtc { | 24 namespace webrtc { |
| 24 | 25 |
| 25 class Config; | 26 class Config; |
| 26 class AudioDecoderFactory; | 27 class AudioDecoderFactory; |
| 27 | 28 |
| 28 namespace voe { | 29 namespace voe { |
| 29 | 30 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 // ChannelOwner.channel() will be NULL if channel_id is invalid or no longer | 112 // ChannelOwner.channel() will be NULL if channel_id is invalid or no longer |
| 112 // exists. This should be checked with ChannelOwner::IsValid(). | 113 // exists. This should be checked with ChannelOwner::IsValid(). |
| 113 ChannelOwner GetChannel(int32_t channel_id); | 114 ChannelOwner GetChannel(int32_t channel_id); |
| 114 void GetAllChannels(std::vector<ChannelOwner>* channels); | 115 void GetAllChannels(std::vector<ChannelOwner>* channels); |
| 115 | 116 |
| 116 void DestroyChannel(int32_t channel_id); | 117 void DestroyChannel(int32_t channel_id); |
| 117 void DestroyAllChannels(); | 118 void DestroyAllChannels(); |
| 118 | 119 |
| 119 size_t NumOfChannels() const; | 120 size_t NumOfChannels() const; |
| 120 | 121 |
| 122 // Returns a pointer to the event log object stored within the ChannelManager. |
| 123 RtcEventLog* GetEventLog() const; |
| 124 |
| 121 private: | 125 private: |
| 122 // Create a channel given a configuration, |config|. | 126 // Create a channel given a configuration, |config|. |
| 123 ChannelOwner CreateChannelInternal( | 127 ChannelOwner CreateChannelInternal( |
| 124 const Config& config, | 128 const Config& config, |
| 125 const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); | 129 const rtc::scoped_refptr<AudioDecoderFactory>& decoder_factory); |
| 126 | 130 |
| 127 uint32_t instance_id_; | 131 uint32_t instance_id_; |
| 128 | 132 |
| 129 Atomic32 last_channel_id_; | 133 Atomic32 last_channel_id_; |
| 130 | 134 |
| 131 rtc::CriticalSection lock_; | 135 rtc::CriticalSection lock_; |
| 132 std::vector<ChannelOwner> channels_; | 136 std::vector<ChannelOwner> channels_; |
| 133 | 137 |
| 134 const Config& config_; | 138 const Config& config_; |
| 139 std::unique_ptr<RtcEventLog> event_log_; |
| 135 | 140 |
| 136 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelManager); | 141 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelManager); |
| 137 }; | 142 }; |
| 138 } // namespace voe | 143 } // namespace voe |
| 139 } // namespace webrtc | 144 } // namespace webrtc |
| 140 | 145 |
| 141 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H | 146 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_MANAGER_H |
| OLD | NEW |