Home
last modified time | relevance | path

Searched refs:gain_diff (Results 1 – 7 of 7) sorted by relevance

/dports/audio/bristol/bristol-0.60.10/bristol/
H A Dmidihandlers.c642 float gain_diff, accum = 1.0; in initFrequencyTable() local
699 gain_diff = pow((double) 13, ((double) 1)/DEF_TAB_SIZE); in initFrequencyTable()
703 defaultTable[i - 1].gain = (accum *= gain_diff); in initFrequencyTable()
705 gain_diff = pow((double) CONTROLLER_RANGE, ((double) 1)/CONTROLLER_RANGE); in initFrequencyTable()
707 gainTable[0].gain = (accum *= gain_diff) / CONTROLLER_RANGE; in initFrequencyTable()
710 gainTable[i].gain = (accum *= gain_diff) / CONTROLLER_RANGE - in initFrequencyTable()
717 gain_diff = pow((double) 2, ((double) 1)/CONTROLLER_RANGE); in initFrequencyTable()
H A Daudiothread.c729 baudio->gain_diff = pow((double) 13, ((double) 1)/DEF_TAB_SIZE); in initBristolAudio()
/dports/audio/vo-amrwbenc/vo-amrwbenc-0.1.3/amrwbenc/src/
H A Ddtx.c570 Word16 tmp, mean, CN_dith, gain_diff; in dithering_control() local
594 gain_diff = 0; in dithering_control()
598 gain_diff = add(gain_diff, tmp); in dithering_control()
600 if (gain_diff > GAIN_THR) in dithering_control()
/dports/audio/opencore-amr/opencore-amr-0.1.5/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
H A Ddtx_decoder_amr_wb.cpp867 int16 i, tmp, mean, CN_dith, gain_diff;
892 gain_diff = 0;
898 gain_diff += tmp ^(tmp >> 15); /* tmp ^sign(tmp) */;
900 if (gain_diff > GAIN_THR)
/dports/net/h323plus/h323plus-1_27_2/plugins/audio/G.722.2/AMR-WB/
H A Denc_dtx.c190 Float32 ISF_diff, gain_diff, mean, tmp; in E_DTX_dithering_control() local
219 gain_diff = 0.0f; in E_DTX_dithering_control()
224 gain_diff += tmp; in E_DTX_dithering_control()
227 if (gain_diff > GAIN_THR) in E_DTX_dithering_control()
/dports/net/opal/opal-3.10.10/plugins/audio/G.722.2/AMR-WB/
H A Denc_dtx.c190 Float32 ISF_diff, gain_diff, mean, tmp; in E_DTX_dithering_control() local
219 gain_diff = 0.0f; in E_DTX_dithering_control()
224 gain_diff += tmp; in E_DTX_dithering_control()
227 if (gain_diff > GAIN_THR) in E_DTX_dithering_control()
/dports/audio/bristol/bristol-0.60.10/include/bristol/
H A Dbristol.h585 float gain_diff; member