blob: b6b7126056353b5fda1f43caeb9fa6c2905c4f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// This file is part of the 64k demo project.
// It defines constants and shared structures for DCT operations.
// The demo uses a 512-point DCT for spectral synthesis.
#pragma once
#define DCT_SIZE 512
// Forward declarations
void fdct_512(const float *input, float *output);
void idct_512(const float *input, float *output);
|