flex_mux.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. Bodo Teichmann (Fraunhofer Institute of Integrated Circuits tmn@iis.fhg.de)
  6. and edited by
  7. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  8. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  9. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  10. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  11. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  12. software module or modifications thereof for use in hardware or
  13. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  14. standards. Those intending to use this software module in hardware or
  15. software products are advised that this use may infringe existing
  16. patents. The original developer of this software module and his/her
  17. company, the subsequent editors and their companies, and ISO/IEC have
  18. no liability for use of this software module or modifications thereof
  19. in an implementation. Copyright is not released for non MPEG-2
  20. NBC/MPEG-4 Audio conforming products. The original developer retains
  21. full right to use the code for his/her own purpose, assign or donate
  22. the code to a third party and to inhibit third party from using the
  23. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  24. copyright notice must be included in all copies or derivative works.
  25. Copyright (c) 1998.
  26. $Id: flex_mux.h,v 1.2 2002/05/13 15:48:18 mvillari Exp $
  27. BT    Bodo Teichmann, FhG/IIS <tmn@iis.fhg.de>
  28. **********************************************************************/
  29. #ifndef _FLEX_MUX_H_INCLUDED
  30. #define _FLEX_MUX_H_INCLUDED
  31. #include "obj_descr.h"           /* typedef structs */
  32. typedef enum {
  33.   GA   = 0,  /* General Audio, formerly called TF */
  34.   CELP = 1,  /* MP4 Celp speech core */
  35.   PARA = 2,  /* Parametric Audio coding, not supported */
  36.   SA   = 3,  /* Structured Audio, not supported */
  37.   TTS  = 4   /* Text To Speech, not supported */
  38.   ,
  39.   HVXC = 5   /* HVXC(parametric speech) core (AI 990616) */
  40. } AUDIO_DEC_TYPE;
  41. void advanceESDescr ( BsBitStream*      bitStream, 
  42.                       ES_DESCRIPTOR*    es,
  43.                       int               WriteFlag );
  44. void initESDescr( ES_DESCRIPTOR **es);
  45. void presetESDescr( ES_DESCRIPTOR *es, int numLayers);
  46. void initObjDescr( OBJECT_DESCRIPTOR *od);
  47. void presetObjDescr( OBJECT_DESCRIPTOR *od, int numLayers);
  48. void getAccessUnit( BsBitStream*   bitStream,
  49.                     BsBitBuffer*   AUBuffer,
  50.                     unsigned int*  AUIndex,
  51.                     unsigned long* totalLength,
  52.                     ES_DESCRIPTOR  *es );
  53. void  advanceODescr (   BsBitStream*      bitStream, OBJECT_DESCRIPTOR *od, int WriteFlag) ;
  54. void writeFlexMuxPDU(int index,BsBitStream* bitStream , BsBitBuffer* AUBuffer);
  55. int  nextAccessUnit( BsBitStream*      bitStream ,                      
  56.                      unsigned int*     layer, 
  57.                      FRAME_DATA*       frameData);
  58. #endif