Remove unused constants, so chrome can enable a warning for that. Patch from thakis@
R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2296006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4844 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -31,9 +31,6 @@
|
||||
// Buffer size (samples)
|
||||
static const size_t kBufSizePartitions = 250; // 1 second of audio in 16 kHz.
|
||||
|
||||
// Noise suppression
|
||||
static const int converged = 250;
|
||||
|
||||
// Metrics
|
||||
static const int subCountLen = 4;
|
||||
static const int countLen = 50;
|
||||
|
||||
@ -44,6 +44,7 @@ static const ALIGN8_BEG int16_t WebRtcAecm_kSqrtHanning[] ALIGN8_END = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef AECM_WITH_ABS_APPROX
|
||||
//Q15 alpha = 0.99439986968132 const Factor for magnitude approximation
|
||||
static const uint16_t kAlpha1 = 32584;
|
||||
//Q15 beta = 0.12967166976970 const Factor for magnitude approximation
|
||||
@ -56,6 +57,7 @@ static const uint16_t kBeta2 = 11072;
|
||||
static const uint16_t kAlpha3 = 26951;
|
||||
//Q15 beta = 0.57762063060713 const Factor for magnitude approximation
|
||||
static const uint16_t kBeta3 = 18927;
|
||||
#endif
|
||||
|
||||
// Initialization table for echo channel in 8 kHz
|
||||
static const int16_t kChannelStored8kHz[PART_LEN1] = {
|
||||
|
||||
Reference in New Issue
Block a user