pred.h
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

C++ Builder

  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. //    Project     : VideoNet version 1.1.
  5. //    Description : Peer to Peer Video Conferencing over the LAN.
  6. //   Author      : Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
  7. //    Date        : 15-6-2004.
  8. //
  9. //    I have converted origional fast h.263 encoder library from C to C++ 
  10. //   so that it can be integrated into any windows application easily.
  11. //   I have removed some of unnecessary codes/files from the
  12. //   fast h263 library.Also moved definitions and declarations
  13. //   in their proper .h and .cpp files.
  14. //
  15. //    File description : 
  16. //    Name    : pred.h
  17. //
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined _PRED_H
  21. #define _PRED_H
  22. #include "Global.h"
  23. MB_Structure *Predict_P(unsigned int *curr_image, unsigned int *prev_image,
  24. unsigned int *prev_ipol, int x, int y, 
  25. MotionVector *MV_ptr);
  26. void DoPredChrom_P(int x_curr, int y_curr, int dx, int dy,
  27.    unsigned int *curr, unsigned int *prev, 
  28.    MB_Structure *pred_error);
  29. void FindPred(int x, int y, MotionVector *fr, unsigned int *prev, 
  30.       int *pred); 
  31. MB_Structure *MB_Recon_P(unsigned int *prev_image, unsigned int *prev_ipol,
  32.  MB_Structure *diff, int x_curr, int y_curr, 
  33.  MotionVector *MV_ptr);
  34. void ReconLumBlock_P(int x, int y, MotionVector *fr,
  35.      unsigned int *prev, int *data);
  36. void ReconChromBlock_P(int x_curr, int y_curr, int dx, int dy,
  37.        unsigned int *prev, MB_Structure *data);
  38. void FindChromBlock_P(int x_curr, int y_curr, int dx, int dy,
  39.        unsigned int *prev, MB_Structure *data);
  40. int ChooseMode(unsigned int *curr, int x_pos, int y_pos, int min_SAD);
  41. #endif