mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
11 lines
187 B
C
11 lines
187 B
C
|
#pragma once
|
||
|
class IDCTRef
|
||
|
{
|
||
|
public:
|
||
|
void init();
|
||
|
void idct(short *block);
|
||
|
private:
|
||
|
|
||
|
static bool initted;
|
||
|
static double c[8][8]; /* cosine transform matrix for 8x1 IDCT */
|
||
|
};
|