blob: c3b583a3166ec393a46122081cb28d9c45b93b01 (
plain)
1
2
3
4
5
6
7
8
9
|
// This file is part of the 64k demo project.
// It defines constants and interface for windowing functions.
// Primary implementation is a 512-point Hamming window.
#pragma once
#define WINDOW_SIZE 512
void hamming_window_512(float* window);
|