blob: b6373c0c7bf958a528c1493671bbd48e6fe21376 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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 */
};
|