HomeSort by relevance Sort by last modified time
    Searched refs:maxRequired (Results 1 - 2 of 2) sorted by null

  /external/sonic/
Sonic.java 39 private int maxRequired;
183 maxRequired = 2*maxPeriod;
184 inputBufferSize = maxRequired;
185 inputBuffer = new short[maxRequired*numChannels];
186 outputBufferSize = maxRequired;
187 outputBuffer = new short[maxRequired*numChannels];
188 pitchBufferSize = maxRequired;
189 pitchBuffer = new short[maxRequired*numChannels];
190 downSampleBuffer = new short[maxRequired];
349 if(numSamples > maxRequired) {
    [all...]
sonic.c 43 int maxRequired;
214 int maxRequired = 2*maxPeriod;
216 stream->inputBufferSize = maxRequired;
217 stream->inputBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels);
222 stream->outputBufferSize = maxRequired;
223 stream->outputBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels);
228 stream->pitchBufferSize = maxRequired;
229 stream->pitchBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels);
234 stream->downSampleBuffer = (short *)calloc(maxRequired, sizeof(short));
245 stream->maxRequired = maxRequired
    [all...]

Completed in 87 milliseconds