Home | History | Annotate | Download | only in mint

Lines Matching refs:frequency

89 /* Add a new frequency/clock/predivisor to the current list */
90 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
99 /* Search where to insert the frequency (highest first) */
101 if (frequency > MINTAUDIO_frequencies[p].frequency) {
114 MINTAUDIO_frequencies[p].frequency = frequency;
122 /* Search for the nearest frequency */
134 if (desired_freq >= ((MINTAUDIO_frequencies[i].frequency+
135 MINTAUDIO_frequencies[i+1].frequency)>>1)) {