• Home
  • Raw
  • Download

Lines Matching refs:outputBuffer

23     short *outputBuffer;  member
187 if(stream->outputBuffer != NULL) { in freeStreamBuffers()
188 free(stream->outputBuffer); in freeStreamBuffers()
223 stream->outputBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels); in allocateStreamBuffers()
224 if(stream->outputBuffer == NULL) { in allocateStreamBuffers()
316 stream->outputBuffer = (short *)realloc(stream->outputBuffer, in enlargeOutputBufferIfNeeded()
318 if(stream->outputBuffer == NULL) { in enlargeOutputBufferIfNeeded()
428 memcpy(stream->outputBuffer + stream->numOutputSamples*stream->numChannels, in copyToOutput()
472 buffer = stream->outputBuffer; in sonicReadFloatFromStream()
478 memmove(stream->outputBuffer, stream->outputBuffer + numSamples*stream->numChannels, in sonicReadFloatFromStream()
502 memcpy(samples, stream->outputBuffer, numSamples*sizeof(short)*stream->numChannels); in sonicReadShortFromStream()
504 memmove(stream->outputBuffer, stream->outputBuffer + numSamples*stream->numChannels, in sonicReadShortFromStream()
530 buffer = stream->outputBuffer; in sonicReadUnsignedCharFromStream()
536 memmove(stream->outputBuffer, stream->outputBuffer + numSamples*stream->numChannels, in sonicReadUnsignedCharFromStream()
814 stream->outputBuffer + originalNumOutputSamples*numChannels, in moveNewSamplesToPitchBuffer()
863 out = stream->outputBuffer + stream->numOutputSamples*numChannels; in adjustPitch()
930 out = stream->outputBuffer + stream->numOutputSamples*numChannels; in adjustRate()
974 overlapAdd(newSamples, numChannels, stream->outputBuffer + in skipPitchPeriod()
1000 out = stream->outputBuffer + stream->numOutputSamples*numChannels; in insertPitchPeriod()
1002 out = stream->outputBuffer + (stream->numOutputSamples + period)*numChannels; in insertPitchPeriod()
1078 scaleSamples(stream->outputBuffer + originalNumOutputSamples*stream->numChannels, in processStreamInput()