quant.h
上传用户: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    : quant.h
  17. //
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined _QUANT_H
  21. #define _QUANT_H
  22. #include "Global.h"
  23. void Dequant(int *qcoeff, int *rcoeff, int QP, int I);
  24. int QuantAndFindCBP(int *coeff, int *qcoeff, int QP, int I, int CBP_Mask);
  25. #endif