Home
last modified time | relevance | path

Searched refs:PCM24_MAX (Results 1 – 2 of 2) sorted by relevance

/external/oboe/apps/OboeTester/app/src/main/cpp/util/
DWaveFileWriter.cpp92 float temp = (PCM24_MAX * value) + 0.5 - PCM24_MIN; in writePCM24()
95 if (sample > PCM24_MAX) { in writePCM24()
96 sample = PCM24_MAX; in writePCM24()
DWaveFileWriter.h150 static constexpr int32_t PCM24_MAX = (1 << 23) - 1; variable