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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3. "This software module was originally developed by 
  4. AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of 
  5. development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 
  6. 14496-1,2 and 3. This software module is an implementation of a part of one or more 
  7. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 
  8. Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio 
  9. standards free license to this software module or modifications thereof for use in 
  10. hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  11. Audio  standards. Those intending to use this software module in hardware or 
  12. software products are advised that this use may infringe existing patents. 
  13. The original developer of this software module and his/her company, the subsequent 
  14. editors and their companies, and ISO/IEC have no liability for use of this software 
  15. module or modifications thereof in an implementation. Copyright is not released for 
  16. non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  17. retains full right to use the code for his/her  own purpose, assign or donate the 
  18. code to a third party and to inhibit third party from using the code for non 
  19. MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  20. be included in all copies or derivative works." 
  21. Copyright(c)1996.
  22.  *                                                                           *
  23.  ****************************************************************************/
  24. #ifndef _interface_h_
  25. #define _interface_h_
  26. /*
  27.  * interface between the encoder and decoder
  28.  */
  29. #define C_LN10          2.30258509299404568402          /* ln(10) */
  30. #define C_PI            3.14159265358979323846          /* pi */
  31. #define C_SQRT2         1.41421356237309504880          /* sqrt(2) */
  32. #define MINTHR          .5
  33. #define SF_C1           (13.33333/1.333333)
  34. /* prediction */
  35. #define PRED_ORDER      2
  36. #define PRED_ALPHA      0.90625
  37. #define PRED_A          0.953125
  38. #define PRED_B          0.953125
  39. enum
  40. {
  41.   /* 
  42.    * block switching
  43.    */
  44.   LN                    = 2048,
  45.   SN                    = 256,
  46.   LN2                   = LN/2,
  47.   SN2                   = SN/2,
  48.   LN4                   = LN/4,
  49.   SN4                   = SN/4,
  50.   NSHORT                = LN/SN,
  51.   MAX_SBK               = NSHORT,
  52.   WLONG                 = 0, /* ONLY_LONG_SEQUENCE,  */
  53.   WSTART, 
  54.   WSHORT, 
  55.   WSTOP, 
  56.     
  57.   MAXBANDS              = 16*NSHORT,    /* max number of scale factor bands */
  58.   MAXFAC                = 121,          /* maximum scale factor */
  59.   MIDFAC                = (MAXFAC-1)/2,
  60.   SF_OFFSET             = 100,          /* global gain must be positive */
  61.   /*
  62.    * specify huffman tables as signed (1) or unsigned (0)
  63.    */
  64.   HUF1SGN               = 1, 
  65.   HUF2SGN               = 1, 
  66.   HUF3SGN               = 0, 
  67.   HUF4SGN               = 0, 
  68.   HUF5SGN               = 1, 
  69.   HUF6SGN               = 1, 
  70.   HUF7SGN               = 0, 
  71.   HUF8SGN               = 0, 
  72.   HUF9SGN               = 0, 
  73.   HUF10SGN              = 0, 
  74.   HUF11SGN              = 0, 
  75.   ZERO_HCB              = 0,
  76.   BY4BOOKS              = 4,
  77.   ESCBOOK               = 11,
  78.   NSPECBOOKS            = ESCBOOK + 1,
  79.   BOOKSCL               = NSPECBOOKS,
  80.   NBOOKS                = NSPECBOOKS + 1,
  81.   NOISE_HCB             = 13,
  82.   INTENSITY_HCB2        = 14,
  83.   INTENSITY_HCB         = 15,
  84.   NOISE_PCM_BITS        = 9,
  85.   NOISE_PCM_OFFSET      = (1 << (NOISE_PCM_BITS-1)),
  86.   NOISE_OFFSET          = 90,
  87.     
  88.   LONG_SECT_BITS        = 5, 
  89.   SHORT_SECT_BITS       = 3, 
  90.   /*
  91.    * Program Configuration
  92.    */
  93.   Main_Profile          = 0, 
  94.   LC_Profile            = 1, 
  95.   SSR_Profile           = 3,
  96.   Fs_48                 = 3, 
  97.   Fs_44                 = 4, 
  98.   Fs_32                 = 5, 
  99.   /*
  100.    * Misc constants
  101.    */
  102.   CC_DOM                = 0,    /* before TNS */ 
  103.   CC_IND                = 1,  
  104.      
  105.   /* 
  106.    * Raw bitstream constants
  107.    */
  108.   LEN_SE_ID             = 3,
  109.   LEN_TAG               = 4,
  110.   LEN_COM_WIN           = 1,
  111.   LEN_ICS_RESERV        = 1, 
  112.   LEN_WIN_SEQ           = 2,
  113.   LEN_WIN_SH            = 1,
  114.   LEN_MAX_SFBL          = 6, 
  115.   LEN_MAX_SFBS          = 4, 
  116.   LEN_CB                = 4,
  117.   LEN_CB_VCB11          = 5, /* its not a separate bitstream element but an extension to LEN_CW regarding virtual table coding for table 11 */
  118.   LEN_SCL_PCM           = 8,
  119.   LEN_PRED_PRES         = 1,
  120.   LEN_PRED_RST          = 1,
  121.   LEN_PRED_RSTGRP       = 5,
  122.   LEN_PRED_ENAB         = 1,
  123.   LEN_MASK_PRES         = 2,
  124.   LEN_MASK              = 1,
  125.   LEN_PULSE_PRES        = 1,
  126.   LEN_TNS_PRES          = 1,
  127.   
  128.   LEN_TNS_NFILTL      = 2,
  129.   LEN_TNS_NFILTS      = 1,
  130.   LEN_TNS_COEFF_RES   = 1,
  131.   LEN_TNS_LENGTHL     = 6,
  132.   LEN_TNS_LENGTHS     = 4,
  133.   LEN_TNS_ORDERL      = 5,
  134.   LEN_TNS_ORDERS      = 3,
  135.   LEN_TNS_DIRECTION   = 1,
  136.   LEN_TNS_COMPRESS    = 1,
  137.   
  138.   LEN_GAIN_PRES         = 1,
  139.   LEN_LCW               = 6,
  140.   LEN_SPEC_DATA         = 14,
  141.   LEN_ENTRY_POINT       = 14,
  142.   LEN_PULSE_NPULSE      = 2, 
  143.   LEN_PULSE_ST_SFB      = 6, 
  144.   LEN_PULSE_POFF        = 5, 
  145.   LEN_PULSE_PAMP        = 4, 
  146.   NUM_PULSE_LINES       = 4, 
  147.   PULSE_OFFSET_AMP      = 4, 
  148.   LEN_IND_CCE_FLG       = 1,  
  149.   LEN_NCC               = 3,
  150.   LEN_IS_CPE            = 1, 
  151.   LEN_CC_LR             = 1,
  152.   LEN_CC_DOM            = 1,
  153.   LEN_CC_SGN            = 1,
  154.   LEN_CCH_GES           = 2,
  155.   LEN_CCH_CGP           = 1,
  156.   LEN_D_ALIGN           = 1,
  157.   LEN_D_CNT             = 8,
  158.   LEN_D_ESC             = 8,
  159.   LEN_F_CNT             = 4,
  160.   LEN_F_ESC             = 8,
  161.   LEN_BYTE              = 8,
  162.   LEN_PAD_DATA          = 8,
  163.   LEN_PC_COMM           = 8, 
  164.   /* sfb 40, coef 672, pred bw of 15.75 kHz at 48 kHz
  165.    * this is also the highest number of bins used
  166.    * by predictor for any sampling rate
  167.    */
  168.   MAX_PRED_SFB          = 40,   /* 48 kHz only, now obsolete */
  169.   MAX_PRED_BINS         = 672,
  170.   ID_SCE                = 0,
  171.   ID_CPE,
  172.   ID_CCE,
  173.   ID_LFE,
  174.   ID_DSE,
  175.   ID_PCE,
  176.   ID_FIL,
  177.   ID_END,
  178.   /* PLL's don't like idle channels! */
  179.   FILL_VALUE            = 0x55,
  180.   /*
  181.    * program configuration element
  182.    */
  183.   LEN_PROFILE           = 2, 
  184.   LEN_SAMP_IDX          = 4, 
  185.   LEN_NUM_ELE           = 4, 
  186.   LEN_NUM_LFE           = 2, 
  187.   LEN_NUM_DAT           = 3, 
  188.   LEN_NUM_CCE           = 4, 
  189.   LEN_MIX_PRES          = 1, 
  190.   LEN_MMIX_IDX          = 2, 
  191.   LEN_PSUR_ENAB         = 1, 
  192.   LEN_ELE_IS_CPE        = 1,
  193.   LEN_IND_SW_CCE        = 1,  
  194.   LEN_COMMENT_BYTES     = 8, 
  195.          
  196.   /*
  197.    * error resilience (RVLC) sf-data elements
  198.    */
  199.   LEN_LONG_LENGTH_OF_RVLC_SF     =  9,
  200.   LEN_SHORT_LENGTH_OF_RVLC_SF    = 11,
  201.   LEN_LONG_LENGTH_OF_SF_DATA     = 10,
  202.   LEN_SHORT_LENGTH_OF_SF_DATA    = 12,
  203.   LEN_LENGTH_OF_RVLC_ESCAPES     =  8,
  204.   LEN_SF_ESCAPES_PRESENT         =  1,
  205.   LEN_REV_GLOBAL_GAIN            =  8,
  206.   LEN_SF_CONCEALMENT             =  1,
  207.   /*
  208.    * audio data interchange format header
  209.    */
  210.   LEN_ADIF_ID           = (32/8), 
  211.   LEN_COPYRT_PRES       = 1, 
  212.   LEN_COPYRT_ID         = (72/8), 
  213.   LEN_ORIG              = 1, 
  214.   LEN_HOME              = 1, 
  215.   LEN_BS_TYPE           = 1, 
  216.   LEN_BIT_RATE          = 23, 
  217.   LEN_NUM_PCE           = 4, 
  218.   LEN_ADIF_BF           = 20, 
  219.   XXX
  220. };
  221. #endif   /* #ifndef _interface_h_ */