Matthieu Delahaye | 197fc09 | 2014-01-28 16:06:57 -0600 | [diff] [blame] | 1 | #ifndef __RS_IDCT_RSH__ |
| 2 | #define __RS_IDCT_RSH__ |
| 3 | |
| 4 | #if RS_VERSION > 19 |
| 5 | |
| 6 | extern void idct4x4(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff); |
| 7 | extern void idct8x8(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff); |
| 8 | extern void idct16x16(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff); |
| 9 | extern void idct32x32(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff); |
| 10 | |
| 11 | #endif |
| 12 | |
| 13 | #endif |