git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added USE_MP3 variable
[swftools.git]
/
lib
/
h.263
/
dct.h
1
#ifndef __dct_h__
2
#define __dct_h__
3
4
void dct(int*src);
5
void idct(int*src);
6
7
void preparequant(int quant);
8
void dct2(int*src, int*dest);
9
10
int zigzagtable[64];
11
void zigzag(int*src);
12
13
#endif //__dct_h__