Revision: | 1.5.2.1 |
Committed: | Tue Jan 21 13:30:59 2003 UTC (21 years, 8 months ago) by suxen_drol |
Content type: | text/plain |
Branch: | dev-api-3 |
Changes since 1.5: | +4 -2 lines |
Log Message: | skal's fdct and michaeln's simple_idct project addition |
# | Content |
---|---|
1 | #ifndef _FDCT_H_ |
2 | #define _FDCT_H_ |
3 | |
4 | typedef void (fdctFunc) (short *const block); |
5 | typedef fdctFunc *fdctFuncPtr; |
6 | |
7 | extern fdctFuncPtr fdct; |
8 | |
9 | fdctFunc fdct_int32; |
10 | |
11 | fdctFunc fdct_mmx; /* AP-992, Royce Shih-Wea Liao */ |
12 | fdctFunc fdct_sse2; /* Dmitry Rozhdestvensky, Vladimir G. Ivanov */ |
13 | fdctFunc xvid_fdct_mmx; /* Pascal Massimino */ |
14 | fdctFunc xvid_fdct_sse; /* Pascal Massimino */ |
15 | |
16 | fdctFunc fdct_altivec; |
17 | fdctFunc fdct_ia64; |
18 | |
19 | #endif /* _FDCT_H_ */ |