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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3.  "This software module was originally developed by 
  4.  Fraunhofer Gesellschaft IIS / University of Erlangen (UER)
  5.  and edited by
  6.  in the course of 
  7.  development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 
  8.  14496-1,2 and 3. This software module is an implementation of a part of one or more 
  9.  MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 
  10.  Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio 
  11.  standards free license to this software module or modifications thereof for use in 
  12.  hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  13.  Audio  standards. Those intending to use this software module in hardware or 
  14.  software products are advised that this use may infringe existing patents. 
  15.  The original developer of this software module and his/her company, the subsequent 
  16.  editors and their companies, and ISO/IEC have no liability for use of this software 
  17.  module or modifications thereof in an implementation. Copyright is not released for 
  18.  non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  19.  retains full right to use the code for his/her  own purpose, assign or donate the 
  20.  code to a third party and to inhibit third party from using the code for non 
  21.  MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  22.  be included in all copies or derivative works." 
  23.  Copyright(c)1999.
  24.  *                                                                           *
  25.  ****************************************************************************/
  26. #ifndef _TF_MAIN_HANDLE_H_INCLUDED
  27. #define _TF_MAIN_HANDLE_H_INCLUDED
  28. #ifndef min
  29. #define min(a,b) ((a) < (b) ? (a) : (b)) 
  30. #endif
  31. #ifndef max
  32. #define max(a,b) ((a) > (b) ? (a) : (b))
  33. #endif
  34. enum DC_FLAG   { 
  35.   DC_DIFF, 
  36.   DC_SIMUL, 
  37.   DC_INVALID = -1 
  38. };
  39. enum JS_MASK { 
  40.   JS_MASK_OFF     =  0, 
  41.   JS_MASK_MS      =  1, 
  42.   JS_MASK_IS      =  2, 
  43.   JS_MASK_INVALID = -1 
  44. };
  45. /* select different pre-/post- processing modules TK */
  46. enum PP_MOD_SELECT { 
  47.   NONE   = 0x0, 
  48.   AAC_PP = 0x1 };
  49. /* select different T/F modules */
  50. enum TF_MOD_SELECT { 
  51.   VM_TF_SOURCE  = 0x1, 
  52.   MDCT_AAC      = 0x2, 
  53.   MDCT_UER      = 0x4, 
  54.   QMF_MDCT_SONY = 0x8, 
  55.   LOW_DELAY_UNH = 0x10 
  56. };
  57. /* select different Q&C modules */ /* YB : 970825 */
  58. typedef enum _QC_MOD_SELECT { 
  59.   VM_QC_SOURCE      = 0x1, 
  60.   AAC_QC            = 0x2, 
  61.   MDCT_VALUES_16BIT = 0x4, 
  62.   UER_QC            = 0x8, 
  63.   NTT_VQ            = 0x10,
  64.   AAC_SCALABLE      = 0x20, 
  65.   AAC_SYS           = 0x30,  /* NTT_VQ | AAC_SCALABLE */
  66.   AAC_BSAC          = 0x40, 
  67.   NTT_VQ_SYS        = 0x50,
  68.   AAC_SCA_BSAC      = 0x80, 
  69.   AAC_SYS_BSAC      = 0x90   /* NTT_VQ | AAC_SCA_BSAC */
  70. } QC_MOD_SELECT;
  71. /* name the audio channels */
  72. enum CHANN_ASS { 
  73.   MONO_CHAN  = 0,
  74.   LEFT_CHAN  = 0, 
  75.   RIGHT_CHAN = 1,
  76.   MAX_CHANNELS
  77. };
  78. enum TF_LAYER { 
  79.   MAX_MED_LAYER = 4,
  80.   HIGH_LAYER    = 4,
  81.   MAX_TF_LAYER  = 5
  82. };
  83. /* audio channel configuration coding */
  84. enum CH_CONFIG { 
  85.   CHC_MONO, 
  86.   CHC_DUAL, 
  87.   CHC_JOINT_DUAL, 
  88.   CHC_5CHAN, 
  89.   CHC_MODES 
  90. };
  91. /* transport layer type */ /* added "NO_SYNCWORD" by NI (28 Aug. 1996) */
  92. enum TRANSPORT_STREAM { 
  93.   NO_TSTREAM, 
  94.   AAC_RAWDATA_TSTREAM, 
  95.   LENINFO_TSTREAM,
  96.   NO_SYNCWORD
  97. };
  98. enum SR_CODING { 
  99.   SR8000, 
  100.   SR11025, 
  101.   SR12000, 
  102.   SR16000, 
  103.   SR22050, 
  104.   SR24000, 
  105.   SR32000, 
  106.   SR44100, 
  107.   SR48000, 
  108.   SR96000,
  109.   MAX_SAMPLING_RATES };
  110. typedef enum  { 
  111.   ONLY_LONG_SEQUENCE, 
  112.   LONG_START_SEQUENCE, 
  113.   EIGHT_SHORT_SEQUENCE,
  114.   LONG_STOP_SEQUENCE,
  115.   NUM_WIN_SEQ        
  116. } WINDOW_SEQUENCE ;    
  117. enum WIN_SWITCH_MODE {
  118.   STATIC_LONG,
  119.   STATIC_MEDIUM,
  120.   STATIC_SHORT,
  121.   LS_STARTSTOP_SEQUENCE,
  122.   LM_STARTSTOP_SEQUENCE,
  123.   MS_STARTSTOP_SEQUENCE,
  124.   LONG_SHORT_SEQUENCE,
  125.   LONG_MEDIUM_SEQUENCE,
  126.   MEDIUM_SHORT_SEQUENCE,
  127.   LONG_MEDIUM_SHORT_SEQUENCE,
  128.   FFT_PE_WINDOW_SWITCHING
  129. };
  130. enum AAC_BIT_STREAM_TYPE { 
  131.   SCALABLE,
  132.   MULTICHANNEL
  133. };
  134. enum CORE_CODEC{ 
  135.   CC_G729, 
  136.   CC_G723_63, 
  137.   CC_G723_53, 
  138.   CC_FS1016, 
  139.   CC_CELP_MPEG4, 
  140.   CC_CELP_MPEG4_50, 
  141.   CC_CELP_MPEG4_60, 
  142.   CC_CELP_MPEG4_80, 
  143.   CC_PAR_MPEG4, 
  144.   MAX_CC_CORE_CODEC,
  145.   NTT_TVQ,
  146.   NO_CORE
  147. };
  148. enum _MAX { 
  149.   MAX_GRANULES            =  3,
  150.   NSFB_LONG               = 53,
  151.   NSFB_SHORT              = 16,
  152.   MAX_SHORT_IN_LONG_BLOCK =  8,
  153.   MAX_SHORT_WINDOWS       =  8
  154. };
  155. /* if static memory allocation is used, this value tells the max. nr of 
  156.    audio channels to be supported */
  157. #define MAX_TIME_CHANNELS (MAX_CHANNELS)
  158. /* max. number of scale factor bands */
  159. #define MAX_SCFAC_BANDS ((NSFB_SHORT+1)*MAX_SHORT_IN_LONG_BLOCK)
  160. #define SFB_NUM_MAX MAX_SCFAC_BANDS
  161. #endif  /* #ifndef _TF_MAIN_HANDLE_H_INCLUDED */