Searched refs:downSampleBuffer (Results 1 – 2 of 2) sorted by relevance
/external/sonic/ |
D | sonic.c | 25 short *downSampleBuffer; member 193 if(stream->downSampleBuffer != NULL) { in freeStreamBuffers() 194 free(stream->downSampleBuffer); in freeStreamBuffers() 234 stream->downSampleBuffer = (short *)calloc(maxRequired, sizeof(short)); in allocateStreamBuffers() 235 if(stream->downSampleBuffer == NULL) { in allocateStreamBuffers() 596 short *downSamples = stream->downSampleBuffer; in downSampleInput() 701 period = findPitchPeriodInRange(stream->downSampleBuffer, minPeriod/skip, in findPitchPeriod() 718 period = findPitchPeriodInRange(stream->downSampleBuffer, minPeriod, in findPitchPeriod()
|
D | Sonic.java | 21 private short downSampleBuffer[]; field in Sonic 190 downSampleBuffer = new short[maxRequired]; in allocateStreamBuffers() 506 downSampleBuffer[i] = (short)value; in downSampleInput() 598 period = findPitchPeriodInRange(downSampleBuffer, 0, minPeriod/skip, in findPitchPeriod() 614 … period = findPitchPeriodInRange(downSampleBuffer, 0, minP, maxP, minDiff, maxDiff); in findPitchPeriod()
|