| 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 29 matching lines...) Expand all Loading... |
| 40 } | 40 } |
| 41 int Terminate() override; | 41 int Terminate() override; |
| 42 | 42 |
| 43 int CreateChannel() override; | 43 int CreateChannel() override; |
| 44 int CreateChannel(const ChannelConfig& config) override; | 44 int CreateChannel(const ChannelConfig& config) override; |
| 45 int DeleteChannel(int channel) override; | 45 int DeleteChannel(int channel) override; |
| 46 | 46 |
| 47 int StartReceive(int channel) override; | 47 int StartReceive(int channel) override; |
| 48 int StartPlayout(int channel) override; | 48 int StartPlayout(int channel) override; |
| 49 int StartSend(int channel) override; | 49 int StartSend(int channel) override; |
| 50 int StopReceive(int channel) override; | |
| 51 int StopPlayout(int channel) override; | 50 int StopPlayout(int channel) override; |
| 52 int StopSend(int channel) override; | 51 int StopSend(int channel) override; |
| 53 | 52 |
| 54 int GetVersion(char version[1024]) override; | 53 int GetVersion(char version[1024]) override; |
| 55 | 54 |
| 56 int LastError() override; | 55 int LastError() override; |
| 57 | 56 |
| 58 AudioTransport* audio_transport() override { return this; } | 57 AudioTransport* audio_transport() override { return this; } |
| 59 | 58 |
| 60 int AssociateSendChannel(int channel, int accociate_send_channel) override; | 59 int AssociateSendChannel(int channel, int accociate_send_channel) override; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 rtc::CriticalSection callbackCritSect_; | 130 rtc::CriticalSection callbackCritSect_; |
| 132 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; | 131 rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_; |
| 133 | 132 |
| 134 AudioFrame audioFrame_; | 133 AudioFrame audioFrame_; |
| 135 voe::SharedData* shared_; | 134 voe::SharedData* shared_; |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace webrtc | 137 } // namespace webrtc |
| 139 | 138 |
| 140 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H | 139 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_IMPL_H |
| OLD | NEW |