Skip to content

Commit

Permalink
more stft
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellga committed Sep 16, 2024
1 parent c2e1b19 commit 913b9e2
Show file tree
Hide file tree
Showing 22 changed files with 1,027 additions and 787 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [0.3.0] - 2024-08-XX
### Added
Forward and inverse STFT.

### Fixed
`HArray`'s `is_shared` is now `is_unique` with a new implementation.

# [0.2.0] - 2024-07-14
### Added
- new FFT implementation
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ members = [
]

[workspace.dependencies]
num-traits = "0.2"
rustfft = "6.2"
realfft = "3.3"
rubato = "0.15.0"
ndarray = "0.15.6"
num-traits = { version = "0.2", default-features = false }
rustfft = { version = "6.2", default-features = false, features = ["avx", "sse", "neon"] }
realfft = { version = "3.3", default-features = false }
rubato = { version = "0.15.0", default-features = false, features = ["fft_resampler"] }
ndarray = { version = "0.16", default-features = false }
symphonia = { version = "0.5.4", default-features = false }
rodio = { version = "0.19.0", default-features = false }
num-complex = { version = "0.4" }
num-complex = { version = "0.4", default-features = false }

harmonium-core = { path = "harmonium-core", default-features = false }
harmonium-io = { path = "harmonium-io", default-features = false }
Expand Down
5 changes: 0 additions & 5 deletions harmonium-core/src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ where
pub fn as_slice_mut(&mut self) -> Option<&mut [T]> {
self.0.as_slice_mut()
}

/// Returns `true` if the `HArray` shares the inner arc with another one.
pub fn is_shared(&self) -> bool {
todo!()
}
}

#[cfg(test)]
Expand Down
Loading

0 comments on commit 913b9e2

Please sign in to comment.