basic_prediction.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #ifndef _BASIC_PREDICTION_H_
  2. #define _BASIC_PREDICTION_H_
  3. void CopyBlock(unsigned char * Src, unsigned char * Dst, int Stride);
  4. void CopyBlockHor(unsigned char * Src, unsigned char * Dst, int Stride);
  5. void CopyBlockVer(unsigned char * Src, unsigned char * Dst, int Stride);
  6. void CopyBlockHorVer(unsigned char * Src, unsigned char * Dst, int Stride);
  7. void CopyBlockHorRound(unsigned char * Src, unsigned char * Dst, int Stride);
  8. void CopyBlockVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
  9. void CopyBlockHorVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
  10. /**/
  11. void CopyMBlock(unsigned char * Src, unsigned char * Dst, int Stride);
  12. void CopyMBlockHor(unsigned char * Src, unsigned char * Dst, int Stride);
  13. void CopyMBlockVer(unsigned char * Src, unsigned char * Dst, int Stride);
  14. void CopyMBlockHorVer(unsigned char * Src, unsigned char * Dst, int Stride);
  15. void CopyMBlockHorRound(unsigned char * Src, unsigned char * Dst, int Stride);
  16. void CopyMBlockVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
  17. void CopyMBlockHorVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
  18. #endif // _BASIC_PREDICTION_H_