HephAudio v3.0.6
A cross-platform C++ library for recording, playing, and processing audio on Windows, Android, Linux, iOS, and macOS.
Loading...
Searching...
No Matches
BlackmanHarrisWindow.h
Go to the documentation of this file.
1#pragma once
2#include "HephAudioShared.h"
3#include "Window.h"
4
7namespace HephAudio
8{
14 {
15 private:
16 double N;
17 public:
20
23
24 double operator[](size_t n) const override;
25 void SetSize(size_t newSize) override;
26 };
27}
#define HEPH_API
Definition HephShared.h:132
generates Blackman-Harris window.
Definition BlackmanHarrisWindow.h:14
void SetSize(size_t newSize) override
double operator[](size_t n) const override
base class for windows.
Definition Window.h:14