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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 222 |
223 int _instanceId; | 223 int _instanceId; |
224 bool _mixFileWithMicrophone; | 224 bool _mixFileWithMicrophone; |
225 uint32_t _captureLevel; | 225 uint32_t _captureLevel; |
226 VoEMediaProcess* external_postproc_ptr_; | 226 VoEMediaProcess* external_postproc_ptr_; |
227 VoEMediaProcess* external_preproc_ptr_; | 227 VoEMediaProcess* external_preproc_ptr_; |
228 bool _mute; | 228 bool _mute; |
229 int32_t _remainingMuteMicTimeMs; | 229 int32_t _remainingMuteMicTimeMs; |
230 bool stereo_codec_; | 230 bool stereo_codec_; |
231 bool swap_stereo_channels_; | 231 bool swap_stereo_channels_; |
232 rtc::scoped_ptr<int16_t[]> mono_buffer_; | |
233 }; | 232 }; |
234 | 233 |
235 } // namespace voe | 234 } // namespace voe |
236 | 235 |
237 } // namespace webrtc | 236 } // namespace webrtc |
238 | 237 |
239 #endif // WEBRTC_VOICE_ENGINE_TRANSMIT_MIXER_H | 238 #endif // WEBRTC_VOICE_ENGINE_TRANSMIT_MIXER_H |
OLD | NEW |