Home | History | Annotate | Download | only in include
      1 #ifndef __RS_DCT_RSH__
      2 #define __RS_DCT_RSH__
      3 
      4 #if RS_VERSION > 19
      5 
      6 extern void rsDct4x4(rs_allocation input, rs_allocation output, int xoff, int yoff);
      7 extern void rsDct8x8(rs_allocation input, rs_allocation output, int xoff, int yoff);
      8 extern void rsDct16x16(rs_allocation input, rs_allocation output, int xoff, int yoff);
      9 extern void rsDct32x32(rs_allocation input, rs_allocation out, int xoff, int yoff);
     10 extern void rsDct32x32_rd(rs_allocation input, rs_allocation out,  int xoff, int yoff);
     11 
     12 #endif
     13 
     14 #endif
     15