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

流媒体/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 _bitstreamHandle_h_
  33. #define _bitstreamHandle_h_
  34. /*
  35.  * This file may be included instead of bitstream.h, if just the
  36.  * handles are required but no function from bitstream.c is used.
  37.  *
  38.  * RS/HP 990421
  39.  */
  40. typedef struct BsBitBufferStruct BsBitBuffer;   /* bit buffer */
  41. typedef struct BsBitStreamStruct BsBitStream;   /* bit stream */
  42. /* VERSION 2 stuff, yet needed by some version 1 function prototypes  */
  43. typedef struct tagEpInfo *HANDLE_EP_INFO;
  44. #endif /* _bitstreamHandle_h_ */