Searched refs:PCM24_MAX (Results 1 – 2 of 2) sorted by relevance
92 float temp = (PCM24_MAX * value) + 0.5 - PCM24_MIN; in writePCM24()95 if (sample > PCM24_MAX) { in writePCM24()96 sample = PCM24_MAX; in writePCM24()
150 static constexpr int32_t PCM24_MAX = (1 << 23) - 1; variable