Revision: | 1.4 |
Committed: | Wed Jun 12 20:38:40 2002 UTC (22 years, 3 months ago) by edgomez |
Content type: | text/plain |
Branch: | MAIN |
Changes since 1.3: | +3 -3 lines |
Log Message: | Cosmetic - CodingStyle Applied - Legal Headers will be added later |
# | Content |
---|---|
1 | #ifndef _IDCT_H_ |
2 | #define _IDCT_H_ |
3 | |
4 | void idct_int32_init(); |
5 | |
6 | typedef void (idctFunc) (short *const block); |
7 | typedef idctFunc *idctFuncPtr; |
8 | |
9 | extern idctFuncPtr idct; |
10 | |
11 | idctFunc idct_int32; |
12 | |
13 | idctFunc idct_mmx; |
14 | idctFunc idct_xmm; |
15 | idctFunc idct_sse2; |
16 | |
17 | idctFunc idct_altivec; |
18 | |
19 | #endif /* _IDCT_H_ */ |