Home | History | Annotate | Download | only in frontend

Lines Matching full:lowpass

79  * type - The type of the eq, the available values are 'lowpass', 'highpass',
120 /* check_biquad_filter_q detects if the browser implements the lowpass and
123 * https://github.com/GoogleChrome/web-audio-samples/wiki/Detection-of-lowpass-BiquadFilter-implementation
130 /* Check the lowpass implementation and return a promise. */
158 /* Return the Q value to be used with the lowpass and highpass biquad filters,
562 if (filter.type == 'lowpass' || filter.type == 'highpass')
852 /* Returns a LR4 lowpass component */
890 /* Returns a lowpass filter */
893 lp.type = 'lowpass';
1262 'lowpass',
1320 /* Special case: automatically set Q to 0 for lowpass/highpass filters. */
1321 if (v == 'lowpass' || v == 'highpass') {
1356 'lowpass': [0, 0, 1],
1823 if (filter.type == 'lowpass' || filter.type == 'highpass')