Home | History | Annotate | Download | only in ntpd

Lines Matching refs:gain

67  * An automatic gain control feature provides protection against
92 * these fields are the carrier amplitude (0-3000), codec gain (0-255),
141 * the monitor gain is set t a default value. Fudgetime2 is used as a
232 int gain; /* codec gain */
233 int mongain; /* codec monitor gain */
359 up->gain = 127;
466 * Once each second, determine the IRIG format and gain.
484 * Set the input port and monitor gain for the next buffer.
951 up->maxsignal, up->gain, up->modndx,
1007 * irig_gain - adjust codec gain
1027 * gain control field. Thus, it may take awhile for changes to
1031 up->gain += 4;
1032 if (up->gain > MAXGAIN)
1033 up->gain = MAXGAIN;
1035 up->gain -= 4;
1036 if (up->gain < 0)
1037 up->gain = 0;
1039 audio_gain(up->gain, up->mongain, up->port);