decstruct.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. //    This is the modified version of tmndecode (H.263 decoder) 
  10. //    written by Karl & Robert.It was in ANSI C. I have converted into C++
  11. //    so that it can be integrated into any windows application. I have 
  12. //    removed some of the files which had display and file storing 
  13. //    functions.I have removed the unnecessary code and also added some
  14. //    new files..
  15. //   Original library dealt with files. Input & Output , both were files.
  16. //    I have done some major changes so that it can be used for real time 
  17. //    decoding process. Now one can use this library for decoding H263 frames. 
  18. //
  19. //
  20. //    File description : 
  21. //    Name    : decstruct.h
  22. //   Details : Global structure declarations....
  23. //
  24. /////////////////////////////////////////////////////////////////////////////
  25. #if !defined DEC_STRUCT_H
  26. #define DEC_STRUCT_H
  27.  struct ld 
  28.  {
  29.   
  30.   /* bit input */
  31.   unsigned char rdbfr[2051];
  32.   unsigned char *rdptr;
  33.   unsigned char inbfr[16];
  34.   int incnt;
  35.   int bitcnt;
  36.   
  37.   /* block data */
  38.   short block[12][64];
  39.  };
  40. typedef struct 
  41. {
  42.   int val, len;
  43. } VLCtab;
  44. typedef struct 
  45. {
  46.   char run, level, len;
  47. } DCTtab;
  48. typedef struct 
  49. {
  50.   int val, len;
  51. } VLCtabI;
  52. typedef struct 
  53. {
  54.   int val, run, sign;
  55. } RunCoef;
  56. #endif