| 37 | } // namespace |
| 38 | |
| 39 | bool Spectrogram::Initialize(int window_length, int step_length) { |
| 40 | std::vector<double> window; |
| 41 | GetPeriodicHann(window_length, &window); |
| 42 | return Initialize(window, step_length); |
| 43 | } |
| 44 | |
| 45 | bool Spectrogram::Initialize(const std::vector<double>& window, |
| 46 | int step_length) { |
nothing calls this directly
no test coverage detected