Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: webrtc/voice_engine/include/voe_base.h

Issue 2668523004: Move AudioDecoder and related stuff to the api/ directory (Closed)
Patch Set: more review fixes Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/voice_engine/coder.cc ('k') | webrtc/voice_engine/voe_base_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webrtc/voice_engine/coder.cc ('k') | webrtc/voice_engine/voe_base_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698