summaryrefslogtreecommitdiff
path: root/plugins/supereq/ffmpeg_fft/libavcodec/dct32.h
blob: dc2d847afb9112d75887ef3855c678534e880ff4 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef DCT_32_H
#define DCT_32_H

#define FIXHR(x)       ((float)(x))
#define MULH3(x, y, s) ((s)*(y)*(x))
#define INTFLOAT float

void dct32(INTFLOAT *out, const INTFLOAT *tab);

#endif