| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // The operations below occur on the main thread. | 148 // The operations below occur on the main thread. |
| 149 | 149 |
| 150 // Starts AEC dump using existing file, with a specified maximum file size in | 150 // Starts AEC dump using existing file, with a specified maximum file size in |
| 151 // bytes. When the limit is reached, logging will stop and the file will be | 151 // bytes. When the limit is reached, logging will stop and the file will be |
| 152 // closed. If max_size_bytes is set to <= 0, no limit will be used. | 152 // closed. If max_size_bytes is set to <= 0, no limit will be used. |
| 153 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes); | 153 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes); |
| 154 | 154 |
| 155 // Stops recording AEC dump. | 155 // Stops recording AEC dump. |
| 156 void StopAecDump(); | 156 void StopAecDump(); |
| 157 | 157 |
| 158 // Starts RtcEventLog using existing file. | |
| 159 bool StartRtcEventLog(rtc::PlatformFile file); | |
| 160 | |
| 161 // Stops logging RtcEventLog. | |
| 162 void StopRtcEventLog(); | |
| 163 | |
| 164 sigslot::signal2<VideoCapturer*, CaptureState> SignalVideoCaptureStateChange; | 158 sigslot::signal2<VideoCapturer*, CaptureState> SignalVideoCaptureStateChange; |
| 165 | 159 |
| 166 private: | 160 private: |
| 167 typedef std::vector<VoiceChannel*> VoiceChannels; | 161 typedef std::vector<VoiceChannel*> VoiceChannels; |
| 168 typedef std::vector<VideoChannel*> VideoChannels; | 162 typedef std::vector<VideoChannel*> VideoChannels; |
| 169 typedef std::vector<DataChannel*> DataChannels; | 163 typedef std::vector<DataChannel*> DataChannels; |
| 170 | 164 |
| 171 void Construct(MediaEngineInterface* me, | 165 void Construct(MediaEngineInterface* me, |
| 172 DataEngineInterface* dme, | 166 DataEngineInterface* dme, |
| 173 CaptureManager* cm, | 167 CaptureManager* cm, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 209 |
| 216 int audio_output_volume_; | 210 int audio_output_volume_; |
| 217 bool enable_rtx_; | 211 bool enable_rtx_; |
| 218 | 212 |
| 219 bool capturing_; | 213 bool capturing_; |
| 220 }; | 214 }; |
| 221 | 215 |
| 222 } // namespace cricket | 216 } // namespace cricket |
| 223 | 217 |
| 224 #endif // TALK_SESSION_MEDIA_CHANNELMANAGER_H_ | 218 #endif // TALK_SESSION_MEDIA_CHANNELMANAGER_H_ |
| OLD | NEW |