Add ExperimentalNs support in Config
R=andrew@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17829004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6567 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -73,6 +73,14 @@ struct ExperimentalAgc {
|
||||
bool enabled;
|
||||
};
|
||||
|
||||
// Use to enable experimental noise suppression. It can be set in the
|
||||
// constructor or using AudioProcessing::SetExtraOptions().
|
||||
struct ExperimentalNs {
|
||||
ExperimentalNs() : enabled(false) {}
|
||||
explicit ExperimentalNs(bool enabled) : enabled(enabled) {}
|
||||
bool enabled;
|
||||
};
|
||||
|
||||
static const int kAudioProcMaxNativeSampleRateHz = 32000;
|
||||
|
||||
// The Audio Processing Module (APM) provides a collection of voice processing
|
||||
|
||||
Reference in New Issue
Block a user