home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 275 / DPCS0111DVD.ISO / Toolkit / Audio-Visual / VirtualDub / Source / VirtualDub-1.9.10-src.7z / src / Kasumi / h / blt_spanutils.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-14  |  1.3 KB  |  24 lines

  1. #ifndef f_VD2_KASUMI_BLT_SPANUTILS_H
  2. #define f_VD2_KASUMI_BLT_SPANUTILS_H
  3.  
  4. #include <vd2/system/vdtypes.h>
  5.  
  6. namespace nsVDPixmapSpanUtils {
  7.     void horiz_expand2x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  8.     void horiz_expand2x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  9.     void horiz_expand4x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  10.     void horiz_compress2x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  11.     void horiz_compress2x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  12.     void horiz_compress4x_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  13.     void horiz_compress4x_centered    (uint8 *dst, const uint8 *src, sint32 w);
  14.     void horiz_realign_to_centered    (uint8 *dst, const uint8 *src, sint32 w);
  15.     void horiz_realign_to_coaligned    (uint8 *dst, const uint8 *src, sint32 w);
  16.     void vert_expand2x_centered        (uint8 *dst, const uint8 *const *srcs, sint32 w, uint8 phase);
  17.     void vert_expand4x_centered        (uint8 *dst, const uint8 *const *srcs, sint32 w, uint8 phase);
  18.     void vert_compress2x_centered_fast    (uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  19.     void vert_compress2x_centered    (uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  20.     void vert_compress4x_centered(uint8 *dst, const uint8 *const *srcarray, sint32 w, uint8 phase);
  21. }
  22.  
  23. #endif
  24.