add duration member

This commit is contained in:
Adam D. Ruppe 2022-12-06 09:08:54 -05:00
parent d52f9ad0ff
commit 6cd77bb283
1 changed files with 4 additions and 0 deletions

4
wav.d
View File

@ -219,6 +219,8 @@ struct WavReader(Range) {
const ushort bitsPerSample;
int dataLength; // don't modify plz
float duration; // in seconds, added nov 26 2022
private uint remainingDataLength;
private Range underlying;
@ -318,6 +320,8 @@ struct WavReader(Range) {
}
this.dataLength = this.remainingDataLength;
this.duration = cast(float) this.dataLength / header.bytesPerSeconds;
}
@property const(ubyte)[] front() {