summaryrefslogtreecommitdiff
path: root/src/audio/window.h
blob: 99ac2091aa2f249a01d4667d77ce2a60b418aefe (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);