Add support for 32bit PCM WAV files

This commit is contained in:
manongjohn 2021-06-15 22:42:16 -04:00
parent 3599eb35c1
commit 26980f875a
2 changed files with 12 additions and 1 deletions

View File

@ -4,6 +4,7 @@
#include <iostream> #include <iostream>
#include "tools/platformTools.h" #include "tools/platformTools.h"
#include "tools/fileTools.h" #include "tools/fileTools.h"
#include <climits>
using std::runtime_error; using std::runtime_error;
using fmt::format; using fmt::format;
@ -18,7 +19,7 @@ using std::filesystem::path;
#define INT24_MAX 8388607 #define INT24_MAX 8388607
// Converts an int in the range min..max to a float in the range -1..1 // Converts an int in the range min..max to a float in the range -1..1
float toNormalizedFloat(int value, int min, int max) { float toNormalizedFloat(int64_t value, int64_t min, int64_t max) {
return (static_cast<float>(value - min) / (max - min) * 2) - 1; return (static_cast<float>(value - min) / (max - min) * 2) - 1;
} }
@ -97,6 +98,9 @@ WaveFileReader::WaveFileReader(const path& filePath) :
} else if (bitsPerSample <= 24) { } else if (bitsPerSample <= 24) {
formatInfo.sampleFormat = SampleFormat::Int24; formatInfo.sampleFormat = SampleFormat::Int24;
bytesPerSample = 3; bytesPerSample = 3;
} else if (bitsPerSample <= 32) {
formatInfo.sampleFormat = SampleFormat::Int32;
bytesPerSample = 4;
} else { } else {
throw runtime_error( throw runtime_error(
format("Unsupported sample format: {}-bit PCM.", bitsPerSample)); format("Unsupported sample format: {}-bit PCM.", bitsPerSample));
@ -172,6 +176,12 @@ inline AudioClip::value_type readSample(
sum += toNormalizedFloat(raw, INT24_MIN, INT24_MAX); sum += toNormalizedFloat(raw, INT24_MIN, INT24_MAX);
break; break;
} }
case SampleFormat::Int32:
{
int raw = read<int>(file);
sum += toNormalizedFloat(raw, INT_MIN, INT_MAX);
break;
}
case SampleFormat::Float32: case SampleFormat::Float32:
{ {
sum += read<float>(file); sum += read<float>(file);

View File

@ -7,6 +7,7 @@ enum class SampleFormat {
UInt8, UInt8,
Int16, Int16,
Int24, Int24,
Int32,
Float32 Float32
}; };