Home | History | Annotate | Download | only in testlibs

Lines Matching refs:band

30 // shelf, where each band has frequency and gain controls, and the peaking
34 // Configuration of a single band.
49 // corresponding band.
107 // band The band to set the gain for.
109 void setGain(int band, int32_t millibel);
111 // Gets gain of a certain band. This is always the last value set (or
113 // band The band to get the gain for.
115 int32_t getGain(int band) const;
120 // band The band to set the frequency for.
122 void setFrequency(int band, uint32_t millihertz);
124 // Gets frequency of a certain band. This is always the last value set (or
126 // band The band to get the frequency for.
128 uint32_t getFrequency(int band) const;
132 // If called on the first or last band, this call is ignored.
133 // band The band to set the frequency for.
135 void setBandwidth(int band, uint32_t cents);
137 // Gets bandwidth of a certain band. This is always the last value set (or
140 // band The band to get the bandwidth for.
142 uint32_t getBandwidth(int band) const;
144 // Gets lower and upper boundaries of a band.
145 // For the low shelf, the low bound is 0 and the high bound is the band
147 // For the high shelf, the low bound is the band frequency and the high
150 void getBandRange(int band, uint32_t & low, uint32_t & high) const;
166 // All the band parameters will be overridden.
198 // Returns the band with the maximum influence on a given frequency.