basic_prediction.h
Upload User: hbbaokai
Upload Date: 2009-07-13
Package Size: 328k
Code Size: 1k
Category:

VOIP program

Development Platform:

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_