Home | History | Annotate | Download | only in sonic

Lines Matching defs:skip

487     // If skip is greater than one, average skip samples together and write them to
493 int skip)
495 int numSamples = maxRequired/skip;
496 int samplesPerValue = numChannels*skip;
510 // Find the best frequency match in the range, and given a sample skip multiple.
533 skip samples. Thus, diff is a 24 bit number, and
589 int skip = 1;
592 skip = sampleRate/SONIC_AMDF_FREQ;
594 if(numChannels == 1 && skip == 1) {
597 downSampleInput(samples, position, skip);
598 period = findPitchPeriodInRange(downSampleBuffer, 0, minPeriod/skip,
599 maxPeriod/skip, minDiff, maxDiff);
600 if(skip != 1) {
601 period *= skip;
602 int minP = period - (skip << 2);
603 int maxP = period + (skip << 2);
804 // Skip over a pitch period, and copy period/speed samples to the output