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

流媒体/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: obj_descr.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 _OBJ_DESCR_H_INCLUDED
  30. #define _OBJ_DESCR_H_INCLUDED
  31. #include "bitstreamHandle.h"     /* handler */
  32. typedef unsigned char UINT8;
  33. typedef unsigned long UINT32;
  34. typedef struct  {
  35.         UINT8  length ;/* in bits */
  36.         UINT32 value;
  37. } DESCR_ELE;
  38. typedef struct {
  39.  DESCR_ELE  TFCodingType ;
  40.  DESCR_ELE  frameLength     ;
  41.  DESCR_ELE  dependsOnCoreCoder;
  42.  DESCR_ELE  coreCoderDelay;
  43.  DESCR_ELE  extension;
  44.  /* no channel config yet */
  45. } TF_SPECIFIC_CONFIG;
  46. typedef struct {
  47.   DESCR_ELE  excitationMode ;
  48.   DESCR_ELE  sampleRateMode ;
  49.   DESCR_ELE  fineRateControl ;
  50.   DESCR_ELE  RPE_Configuration ;
  51.   DESCR_ELE  MPE_Configuration ;
  52.   DESCR_ELE  numEnhLayers ;
  53.   DESCR_ELE  bandwidthScalabilityMode ;
  54. /*  DESCR_ELE  BWS_Configuration ; */
  55.  /* no channel config yet */
  56. } CELP_SPECIFIC_CONFIG;
  57. typedef struct {
  58.    DESCR_ELE  dummy;
  59.  /* no channel config yet */
  60. } PARA_SPECIFIC_CONFIG;
  61. /* AI 990616 */
  62. typedef struct {
  63.   DESCR_ELE  HVXCvarMode;
  64.   DESCR_ELE  HVXCrateMode;
  65.   DESCR_ELE  extensionFlag;
  66. } HVXC_SPECIFIC_CONFIG;
  67. typedef struct {
  68.  DESCR_ELE  audioDecoderType        ;
  69.  DESCR_ELE  samplingFreqencyIndex;
  70.  DESCR_ELE  channelConfiguration;
  71.  union {
  72.     TF_SPECIFIC_CONFIG TFSpecificConfig;
  73.     CELP_SPECIFIC_CONFIG celpSpecificConfig;
  74.     PARA_SPECIFIC_CONFIG paraSpecificConfig;
  75.     HVXC_SPECIFIC_CONFIG hvxcSpecificConfig; /* AI 990616 */
  76.  } specConf;
  77. }  AUDIO_SPECIFIC_CONFIG;
  78. typedef struct {
  79.  DESCR_ELE  profileAndLevelIndication;
  80.  DESCR_ELE  streamType      ;
  81.  DESCR_ELE  upsteam;
  82.  DESCR_ELE  specificInfoFlag;
  83.  DESCR_ELE  bufferSizeDB;
  84.  DESCR_ELE  maxBitrate;
  85.  DESCR_ELE  avgBitrate;
  86. #if 0
  87.  DESCR_ELE  bitresFullness;
  88. #endif
  89.  DESCR_ELE  specificInfoLength;
  90.  AUDIO_SPECIFIC_CONFIG audioSpecificConfig;
  91. } DEC_CONF_DESCRIPTOR ;
  92. typedef struct {
  93.  DESCR_ELE useAccessUnitStartFlag;
  94.  DESCR_ELE useAccessUnitEndFlag;
  95.  DESCR_ELE useRandomAccessPointFlag;
  96.  DESCR_ELE usePaddingFlag;
  97.  DESCR_ELE seqNumLength;
  98.   /* to be completed */
  99. } AL_CONF_DESCRIPTOR ;
  100. typedef struct {
  101.  DESCR_ELE  ESNumber;
  102.  DESCR_ELE  streamDependence;
  103.  DESCR_ELE  URLFlag;
  104.  DESCR_ELE  extensFlag;
  105.  DESCR_ELE  dependsOn_Es_number;
  106.  DEC_CONF_DESCRIPTOR DecConfigDescr;  
  107.  AL_CONF_DESCRIPTOR ALConfigDescriptor;
  108. } ES_DESCRIPTOR ;
  109. typedef struct {
  110.  DESCR_ELE  ODLength; 
  111.  DESCR_ELE  ODescrId;
  112.  DESCR_ELE  streamCount;
  113.  DESCR_ELE  extensionFlag;
  114.  ES_DESCRIPTOR *ESDescriptor[8]; 
  115. } OBJECT_DESCRIPTOR ;
  116. typedef struct {
  117.   BsBitBuffer*      bitBuf;
  118.   int               sampleRate;
  119.   int               bitRate;
  120.   unsigned int NoAUInBuffer;
  121. } LAYER_DATA ;
  122. typedef struct {
  123.   OBJECT_DESCRIPTOR* od ;
  124.   LAYER_DATA layer[8];
  125.   unsigned int scalOutSelect;
  126. } FRAME_DATA ;
  127. typedef struct {
  128.   OBJECT_DESCRIPTOR* od ;
  129.   LAYER_DATA layer[8];
  130.   int        opMode;
  131. } ENC_FRAME_DATA ;
  132. #endif