blob: e37973673e811c0fc7e135ddf949f70b0e5474fc [file] [log] [blame]
Matthieu Delahaye197fc092014-01-28 16:06:57 -06001#ifndef __RS_IDCT_RSH__
2#define __RS_IDCT_RSH__
3
4#if RS_VERSION > 19
5
6extern void idct4x4(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
7extern void idct8x8(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
8extern void idct16x16(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
9extern void idct32x32(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
10
11#endif
12
13#endif