Home | History | Annotate | Download | only in sonic

Lines Matching defs:skip

584 /* If skip is greater than one, average skip samples together and write them to
590 int skip)
592 int numSamples = stream->maxRequired/skip;
593 int samplesPerValue = stream->numChannels*skip;
608 /* Find the best frequency match in the range, and given a sample skip multiple.
633 than 256, since we skip samples. Thus, diff is a 24 bit number, and
691 int skip = 1;
695 skip = sampleRate/SONIC_AMDF_FREQ;
697 if(stream->numChannels == 1 && skip == 1) {
700 downSampleInput(stream, samples, skip);
701 period = findPitchPeriodInRange(stream->downSampleBuffer, minPeriod/skip,
702 maxPeriod/skip, &minDiff, &maxDiff);
703 if(skip != 1) {
704 period *= skip;
705 minPeriod = period - (skip << 2);
706 maxPeriod = period + (skip << 2);
955 /* Skip over a pitch period, and copy period/speed samples to the output */