Fixing some warnings in common_audio.

Review URL: http://webrtc-codereview.appspot.com/77002

git-svn-id: http://webrtc.googlecode.com/svn/trunk@227 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
ajm@google.com
2011-07-18 17:27:02 +00:00
parent f70cc07137
commit 1e34241426
2 changed files with 4 additions and 7 deletions

View File

@@ -36,9 +36,6 @@ int WebRtcSpl_FilterAR(G_CONST WebRtc_Word16* a,
WebRtc_Word16* filteredFINAL_ptr = filtered;
WebRtc_Word16* filteredFINAL_LOW_ptr = filtered_low;
state_low_length = state_low_length;
filtered_low_length = filtered_low_length;
for (i = 0; i < x_length; i++)
{
// Calculate filtered[i] and filtered_low[i]

View File

@@ -651,10 +651,10 @@ WebRtc_Word16 WebRtcVad_GmmProbability(VadInstT *inst, WebRtc_Word16 *feature_ve
*nmean2ptr -= tmp16_2;
}
*nmean1ptr++;
*smean1ptr++;
*nstd1ptr++;
*sstd1ptr++;
nmean1ptr++;
smean1ptr++;
nstd1ptr++;
sstd1ptr++;
}
inst->frame_counter++;
} else