mirror of https://github.com/adamdruppe/arsd.git
add duration member
This commit is contained in:
parent
d52f9ad0ff
commit
6cd77bb283
4
wav.d
4
wav.d
|
@ -219,6 +219,8 @@ struct WavReader(Range) {
|
||||||
const ushort bitsPerSample;
|
const ushort bitsPerSample;
|
||||||
int dataLength; // don't modify plz
|
int dataLength; // don't modify plz
|
||||||
|
|
||||||
|
float duration; // in seconds, added nov 26 2022
|
||||||
|
|
||||||
private uint remainingDataLength;
|
private uint remainingDataLength;
|
||||||
|
|
||||||
private Range underlying;
|
private Range underlying;
|
||||||
|
@ -318,6 +320,8 @@ struct WavReader(Range) {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dataLength = this.remainingDataLength;
|
this.dataLength = this.remainingDataLength;
|
||||||
|
|
||||||
|
this.duration = cast(float) this.dataLength / header.bytesPerSeconds;
|
||||||
}
|
}
|
||||||
|
|
||||||
@property const(ubyte)[] front() {
|
@property const(ubyte)[] front() {
|
||||||
|
|
Loading…
Reference in New Issue