| 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 16 matching lines...) Expand all Loading... |
| 27 // base->StartPlayout(ch); | 27 // base->StartPlayout(ch); |
| 28 // ... | 28 // ... |
| 29 // base->DeleteChannel(ch); | 29 // base->DeleteChannel(ch); |
| 30 // base->Terminate(); | 30 // base->Terminate(); |
| 31 // base->Release(); | 31 // base->Release(); |
| 32 // VoiceEngine::Delete(voe); | 32 // VoiceEngine::Delete(voe); |
| 33 // | 33 // |
| 34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H | 34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H |
| 35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H | 35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H |
| 36 | 36 |
| 37 #include "webrtc/api/audio_codecs/audio_decoder_factory.h" |
| 37 #include "webrtc/base/scoped_ref_ptr.h" | 38 #include "webrtc/base/scoped_ref_ptr.h" |
| 38 #include "webrtc/modules/audio_coding/codecs/audio_decoder_factory.h" | 39 #include "webrtc/common_types.h" |
| 39 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" | 40 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
| 40 #include "webrtc/common_types.h" | |
| 41 | 41 |
| 42 namespace webrtc { | 42 namespace webrtc { |
| 43 | 43 |
| 44 class AudioDeviceModule; | 44 class AudioDeviceModule; |
| 45 class AudioProcessing; | 45 class AudioProcessing; |
| 46 class AudioTransport; | 46 class AudioTransport; |
| 47 | 47 |
| 48 // VoiceEngineObserver | 48 // VoiceEngineObserver |
| 49 class WEBRTC_DLLEXPORT VoiceEngineObserver { | 49 class WEBRTC_DLLEXPORT VoiceEngineObserver { |
| 50 public: | 50 public: |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0; | 199 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0; |
| 200 | 200 |
| 201 protected: | 201 protected: |
| 202 VoEBase() {} | 202 VoEBase() {} |
| 203 virtual ~VoEBase() {} | 203 virtual ~VoEBase() {} |
| 204 }; | 204 }; |
| 205 | 205 |
| 206 } // namespace webrtc | 206 } // namespace webrtc |
| 207 | 207 |
| 208 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H | 208 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H |
| OLD | NEW |