Lines Matching refs:inputBuffer
22 short *inputBuffer; member
184 if(stream->inputBuffer != NULL) { in freeStreamBuffers()
185 free(stream->inputBuffer); in freeStreamBuffers()
217 stream->inputBuffer = (short *)calloc(maxRequired, sizeof(short)*numChannels); in allocateStreamBuffers()
218 if(stream->inputBuffer == NULL) { in allocateStreamBuffers()
332 stream->inputBuffer = (short *)realloc(stream->inputBuffer, in enlargeInputBufferIfNeeded()
334 if(stream->inputBuffer == NULL) { in enlargeInputBufferIfNeeded()
356 buffer = stream->inputBuffer + stream->numInputSamples*stream->numChannels; in addFloatSamplesToInputBuffer()
376 memcpy(stream->inputBuffer + stream->numInputSamples*stream->numChannels, samples, in addShortSamplesToInputBuffer()
397 buffer = stream->inputBuffer + stream->numInputSamples*stream->numChannels; in addUnsignedCharSamplesToInputBuffer()
413 memmove(stream->inputBuffer, stream->inputBuffer + position*stream->numChannels, in removeInputSamples()
445 if(!copyToOutput(stream, stream->inputBuffer + position*stream->numChannels, in copyInputToOutput()
560 memset(stream->inputBuffer + remainingSamples*stream->numChannels, 0, in sonicFlushStream()
1027 samples = stream->inputBuffer + position*stream->numChannels; in changeSpeed()
1060 if(!copyToOutput(stream, stream->inputBuffer, stream->numInputSamples)) { in processStreamInput()