Reformat voe_audio_processing_impl to Goog style.

TBR=xians@webrtc.org
BUG=
TEST=voe_auto_test

Review URL: https://webrtc-codereview.appspot.com/439003

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1847 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2012-03-06 19:50:12 +00:00
parent 6f9f817e06
commit 8b111eb3e6
2 changed files with 770 additions and 930 deletions

File diff suppressed because it is too large Load Diff

View File

@ -16,14 +16,13 @@
#include "ref_count.h" #include "ref_count.h"
#include "shared_data.h" #include "shared_data.h"
namespace webrtc { namespace webrtc {
class VoEAudioProcessingImpl : public virtual voe::SharedData, class VoEAudioProcessingImpl
: public virtual voe::SharedData,
public VoEAudioProcessing, public VoEAudioProcessing,
public voe::RefCount public voe::RefCount {
{ public:
public:
virtual int Release(); virtual int Release();
virtual int SetNsStatus(bool enable, NsModes mode = kNsUnchanged); virtual int SetNsStatus(bool enable, NsModes mode = kNsUnchanged);
@ -90,11 +89,11 @@ public:
virtual int GetTypingDetectionStatus(bool& enabled); virtual int GetTypingDetectionStatus(bool& enabled);
protected: protected:
VoEAudioProcessingImpl(); VoEAudioProcessingImpl();
virtual ~VoEAudioProcessingImpl(); virtual ~VoEAudioProcessingImpl();
private: private:
bool _isAecMode; bool _isAecMode;
}; };