Home
last modified time | relevance | path

Searched refs:fromRate (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_grc3.c361 grc->srcrate = fromRate; in grc3_setup_up()
369 grc->srcrate = fromRate; in grc3_setup_dn()
371 grc->filtfactor = 0x80000000U / fromRate; in grc3_setup_dn()
372 grc->ptr_incv = _muldivu64(1024 << 15, toRate, fromRate); in grc3_setup_dn()
373 grc->sat = _muldivu64(0x80000000U, toRate, fromRate); in grc3_setup_dn()
377 grc3_setup(grc3state_t *grc, uint32_t fromRate, uint32_t toRate) in grc3_setup() argument
379 while ((!(fromRate & 1)) && (!(toRate & 1)) && (fromRate > 0)) { in grc3_setup()
380 fromRate >>= 1; in grc3_setup()
384 if (fromRate <= toRate) in grc3_setup()
385 grc3_setup_up(grc, fromRate, toRate); in grc3_setup()
[all …]
H A Daudio_grc3.h264 void grc3_setup(grc3state_t *, uint32_t fromRate, uint32_t toRate);