bitstreamStruct.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2. MPEG-4 Audio VM
  3. Bit stream module
  4. This software module was originally developed by
  5. Heiko Purnhagen (University of Hannover / ACTS-MoMuSys)
  6. and edited by
  7. Ralph Sperschneider (Fraunhofer Gesellschaft IIS)
  8. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  9. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  10. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  11. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  12. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  13. software module or modifications thereof for use in hardware or
  14. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  15. standards. Those intending to use this software module in hardware or
  16. software products are advised that this use may infringe existing
  17. patents. The original developer of this software module and his/her
  18. company, the subsequent editors and their companies, and ISO/IEC have
  19. no liability for use of this software module or modifications thereof
  20. in an implementation. Copyright is not released for non MPEG-2
  21. NBC/MPEG-4 Audio conforming products. The original developer retains
  22. full right to use the code for his/her own purpose, assign or donate
  23. the code to a third party and to inhibit third party from using the
  24. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  25. copyright notice must be included in all copies or derivative works.
  26. Copyright (c) 1996, 1999.
  27. Authors:
  28. HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>
  29. Changes:
  30. 19-apr-99   HP    cleaning up some header files again :-(
  31. **********************************************************************/
  32. #ifndef _bitstreamStruct_h_
  33. #define _bitstreamStruct_h_
  34. /*
  35.  * Although they should NEVER do so, some functions using the bitstream
  36.  * module still want to have access to internal variables of the
  37.  * BsBitBuffer and BsBitStream structures ...
  38.  * ... and thus want include this file :-(
  39.  *
  40.  * HP 970219 990419
  41.  */
  42. #include "bitstreamHandle.h" /* handles */
  43. struct BsBitBufferStruct /* bit buffer */
  44. {
  45.   unsigned char* data;          /* data bits */
  46.   long           numBit;        /* number of bits in buffer */
  47.   long           size;          /* buffer size in bits */
  48. };
  49. struct BsBitStreamStruct /* bit stream */
  50. {
  51.   FILE * file; /* file or NULL for buffer i/o */
  52.   int write; /* 0=read  1=write */
  53.   long streamId; /* stream id (for debug) */
  54.   char* info; /* info string (for read file) */
  55.   BsBitBuffer* buffer[2]; /* bit buffers */
  56. /* (buffer[1] is only used for read file) */
  57.   long currentBit; /* current bit position in bit stream */
  58. /* (i.e. number of bits read/written) */
  59.   long numByte; /* number of bytes read/written (only file) */
  60. };
  61. #endif /* _bitstreamStruct_h_ */