basic_prediction.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
- #ifndef _BASIC_PREDICTION_H_
- #define _BASIC_PREDICTION_H_
- void CopyBlock(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockHor(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockVer(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockHorVer(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockHorRound(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyBlockHorVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
- /**/
- void CopyMBlock(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockHor(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockVer(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockHorVer(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockHorRound(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
- void CopyMBlockHorVerRound(unsigned char * Src, unsigned char * Dst, int Stride);
- #endif // _BASIC_PREDICTION_H_