HomeSort by: relevance | last modified time | path
    Searched defs:dstfreq (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/dev/audio/
audio.c 4001 * phase is delayed by 1/dstfreq. However, I believe there is no
4005 * srcfreq:dstfreq = 1:3
4481 uint32_t dstfreq; local in function:audio_track_init_freq
4496 dstfreq = dstfmt->sample_rate;
4497 if (srcfreq != dstfreq) {
4504 track->freq_step = (uint64_t)srcfreq * 65536 / dstfreq;
4507 mod = (uint64_t)srcfreq * 65536 % dstfreq;
4508 track->freq_leap = (mod * dst_capacity + dstfreq / 2) / dstfreq;

Completed in 44 milliseconds