Skip to content

Commit 975d250

Browse files
committed
updated version number.
1 parent e9d2444 commit 975d250

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Releases
22

3+
## 0.3.2
4+
* Avoid GC pressure by doing most of the operations in `stft` and
5+
`mfcc` in-place.
6+
37
## 0.3.1
48
* Renamed `FilterBank` to `filterbank` to homogenize the user interface.
59
The previous `FilterBank` function is still exported but is mark

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SpeechFeatures"
22
uuid = "6f3487c4-5ca2-4050-bfeb-2cf56df92307"
33
authors = ["Lucas Ondel <[email protected]"]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using SpeechFeatures
3131
# fs = ... sampling frequency
3232

3333
S, fftlen = stft(x; srate=fs) # Complex short-term spectrum.
34-
fbank = FilterBank(26; fftlen=fftlen)
34+
fbank = filterbank(26; fftlen=fftlen)
3535
mS = fbank * abs.(S) # Magnitude of the Mel-spectrum.
3636
MFCCs = mfcc(mS; nceps=13) # Standard MFCCs.
3737
MFCCs_Δ_ΔΔ = add_deltas(MFCCs; order=2) # MFCCs + 1st and 2nd order derivatives.

0 commit comments

Comments
 (0)