| 54 | }; |
| 55 | |
| 56 | class ISTFT { |
| 57 | public: |
| 58 | AudioTensor compute( |
| 59 | const std::vector<float> & complex_spec, |
| 60 | const std::vector<float> & window, |
| 61 | int64_t batch, |
| 62 | int64_t freq_bins, |
| 63 | int64_t frames, |
| 64 | int64_t samples, |
| 65 | const STFTConfig & config, |
| 66 | size_t threads = 0) const; |
| 67 | }; |
| 68 | |
| 69 | struct MelFilterbankConfig { |
| 70 | int64_t sample_rate = 0; |
no outgoing calls