Lines Matching defs:in
282 /* Set the sample rate of the stream. This will cause samples buffered in the stream to
299 /* Set the num channels of the stream. This will cause samples buffered in the stream to
544 has. No extra delay will be added to the output, but flushing in the middle of
577 /* Return the number of samples in the output buffer */
608 /* Find the best frequency match in the range, and given a sample skip multiple.
680 speed, we down sample by an integer factor get in the 11KHz range, and then
797 /* Just move the new samples in the output buffer to the pitch buffer */
884 short *in,
888 short left = *in;
889 short right = in[stream->numChannels];
909 short *in, *out;
923 /* Leave at least one pitch sample in the buffer */
931 in = stream->pitchBuffer + position;
933 *out++ = interpolate(stream, in, oldSampleRate, newSampleRate);
934 in++;