Fixed missing samplerate update in new recorder

This commit is contained in:
AlexandreRouma 2023-01-09 05:51:58 +01:00 committed by GitHub
parent 55db98d1df
commit 1ae1cc0e77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,6 +130,7 @@ namespace wav {
// Validate samplerate
if (!samplerate) { throw std::runtime_error("Samplerate must be non-zero"); }
_samplerate = samplerate;
}
void Writer::setFormat(Format format) {
@ -179,4 +180,4 @@ namespace wav {
// Increment sample counter
samplesWritten += count;
}
}
}