basic_prediction.h
资源名称:VC++视频传输.rar [点击查看]
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:
VC书籍
开发平台:
Visual C++
- #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_