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

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    : Global.cpp
  17. //
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "Global.h"
  21. // Global variable 
  22. WriteByte WriteByteFunction;
  23. int Global::advanced=0;
  24. int Global::cpels=0;
  25. //FILE * Global::debugf=0;
  26. int Global::headerlength=0;
  27. int Global::lines=0;
  28. int Global::long_vectors=0;
  29. int Global::mbc=0;
  30. int Global::mbr=0;
  31. FILE * Global::mv_file=0;
  32. int Global::mv_outside_frame=0;
  33. int Global::pb_frames=0;
  34. int Global::pels=0;
  35. int Global::search_p_frames=0;
  36. size_t Global::sizeof_frame=0;
  37. float Global::target_framerate=0;
  38. FILE * Global::tf=0;
  39. int Global::trace=0;
  40. int Global::uskip=0;
  41. int Global::vskip=0;
  42. Pict* Global::pic=NULL;