Fix compile warning in NS.
BUG=issue151 TEST=audioproc_unittest Review URL: http://webrtc-codereview.appspot.com/290005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1041 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
d1b7932adf
commit
400ad6928e
@ -1256,7 +1256,6 @@ void WebRtcNsx_DataAnalysis(NsxInst_t* inst, short* speechFrame, WebRtc_UWord16*
|
||||
WebRtc_Word16 realImag[ANAL_BLOCKL_MAX << 1];
|
||||
|
||||
int i, j;
|
||||
int outCFFT;
|
||||
int zeros;
|
||||
int net_norm = 0;
|
||||
int right_shifts_in_magnU16 = 0;
|
||||
@ -1292,7 +1291,7 @@ void WebRtcNsx_DataAnalysis(NsxInst_t* inst, short* speechFrame, WebRtc_UWord16*
|
||||
|
||||
// bit-reverse position of elements in array and FFT the array
|
||||
WebRtcSpl_ComplexBitReverse(realImag, inst->stages); // Q(normData-stages)
|
||||
outCFFT = WebRtcSpl_ComplexFFT(realImag, inst->stages, 1);
|
||||
WebRtcSpl_ComplexFFT(realImag, inst->stages, 1);
|
||||
|
||||
inst->imag[0] = 0; // Q(normData-stages)
|
||||
inst->imag[inst->anaLen2] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user