blob: d602e348197233ac378b11a5b03300be85d0ccad [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
Jason Samsd22e2e22014-02-11 16:59:22 -08006extern void rsIdct4x4(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
7extern void rsIdct8x8(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
8extern void rsIdct16x16(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
9extern void rsIdct32x32(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
Matthieu Delahaye197fc092014-01-28 16:06:57 -060010
11#endif
12
13#endif