Clean up the Config to enable 48kHz support in AudioProcessing

Now 48kHz is enabled by default.

BUG=webrtc:3146

Review URL: https://codereview.webrtc.org/1233393003

Cr-Commit-Position: refs/heads/master@{#9643}
This commit is contained in:
aluebs
2015-07-27 10:17:58 -07:00
committed by Commit bot
parent ef35f069e7
commit b3b79b6115
3 changed files with 2 additions and 14 deletions

View File

@ -116,15 +116,6 @@ struct Beamforming {
const std::vector<Point> array_geometry;
};
// Use to enable 48kHz support in audio processing. Must be provided through the
// constructor. It will have no impact if used with
// AudioProcessing::SetExtraOptions().
struct AudioProcessing48kHzSupport {
AudioProcessing48kHzSupport() : enabled(true) {}
explicit AudioProcessing48kHzSupport(bool enabled) : enabled(enabled) {}
bool enabled;
};
static const int kAudioProcMaxNativeSampleRateHz = 32000;
// The Audio Processing Module (APM) provides a collection of voice processing