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

流媒体/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. /*
  25.  * $Id: interface.h,v 1.6 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #ifndef _interface_h_
  28. #define _interface_h_
  29. /*
  30.  * interface between the encoder and decoder
  31.  */
  32. #define C_LN10      2.30258509299404568402      /* ln(10) */
  33. #define C_PI        3.14159265358979323846f     /* pi */
  34. #define C_SQRT2     1.41421356237309504880      /* sqrt(2) */
  35. #define MINTHR      .5
  36. #define SF_C1       (13.33333/1.333333)
  37. /* prediction */
  38. #define PRED_ORDER  2
  39. #define PRED_ALPHA  0.90625f
  40. #define PRED_A      0.953125f
  41. #define PRED_B      0.953125f
  42. enum
  43. {
  44.     /*
  45.      * block switching
  46.      */
  47.     LN          = 2048,
  48.     SN          = 256,
  49.     LN2         = LN/2,
  50.     SN2         = SN/2,
  51.     LN4         = LN/4,
  52.     SN4         = SN/4,
  53.     NSHORT      = LN/SN,
  54.     MAX_SBK     = NSHORT,
  55.     ONLY_LONG_WINDOW    = 0,
  56.     LONG_START_WINDOW,
  57.     EIGHT_SHORT_WINDOW,
  58.     LONG_STOP_WINDOW,
  59.     NUM_WIN_SEQ,
  60.     WLONG       = ONLY_LONG_WINDOW,
  61.     WSTART,
  62.     WSHORT,
  63.     WSTOP,
  64.     MAXBANDS        = 16*NSHORT,    /* max number of scale factor bands */
  65.     MAXFAC      = 121,      /* maximum scale factor */
  66.     MIDFAC      = (MAXFAC-1)/2,
  67.     SF_OFFSET       = 100,      /* global gain must be positive */
  68.     /*
  69.      * specify huffman tables as signed (1) or unsigned (0)
  70.      */
  71.     HUF1SGN     = 1,
  72.     HUF2SGN     = 1,
  73.     HUF3SGN     = 0,
  74.     HUF4SGN     = 0,
  75.     HUF5SGN     = 1,
  76.     HUF6SGN     = 1,
  77.     HUF7SGN     = 0,
  78.     HUF8SGN     = 0,
  79.     HUF9SGN     = 0,
  80.     HUF10SGN        = 0,
  81.     HUF11SGN        = 0,
  82.     ZERO_HCB        = 0,
  83.     BY4BOOKS        = 4,
  84.     ESCBOOK     = 11,
  85.     NSPECBOOKS      = ESCBOOK + 1,
  86.     BOOKSCL     = NSPECBOOKS,
  87.     NBOOKS      = NSPECBOOKS+1,
  88.     INTENSITY_HCB2  = 14,
  89.     INTENSITY_HCB   = 15,
  90.     NOISE_HCB       = 13,
  91.     NOISE_PCM_BITS      = 9,
  92.     NOISE_PCM_OFFSET    = (1 << (NOISE_PCM_BITS-1)),
  93.     NOISE_OFFSET        = 90,
  94.     LONG_SECT_BITS  = 5,
  95.     SHORT_SECT_BITS = 3,
  96.     /*
  97.      * Program Configuration
  98.      */
  99.     AACMAIN = 0,
  100.     AACLC = 1,
  101.     AACSSR = 2,
  102.     AACLTP = 3,
  103.     Fs_48       = 3,
  104.     Fs_44       = 4,
  105.     Fs_32       = 5,
  106.     /*
  107.      * Misc constants
  108.      */
  109.     CC_DOM      = 0,    /* before TNS */
  110.     CC_IND      = 1,
  111.     /*
  112.      * Raw bitstream constants
  113.      */
  114.     LEN_SE_ID       = 3,
  115.     LEN_TAG     = 4,
  116.     LEN_COM_WIN     = 1,
  117.     LEN_ICS_RESERV  = 1,
  118.     LEN_WIN_SEQ     = 2,
  119.     LEN_WIN_SH      = 1,
  120.     LEN_MAX_SFBL    = 6,
  121.     LEN_MAX_SFBS    = 4,
  122.     LEN_CB      = 4,
  123.     LEN_SCL_PCM     = 8,
  124.     LEN_PRED_PRES   = 1,
  125.     LEN_PRED_RST    = 1,
  126.     LEN_PRED_RSTGRP = 5,
  127.     LEN_PRED_ENAB   = 1,
  128.     LEN_MASK_PRES   = 2,
  129.     LEN_MASK        = 1,
  130.     LEN_PULSE_PRES  = 1,
  131.     LEN_TNS_PRES    = 1,
  132.     LEN_GAIN_PRES   = 1,
  133.     LEN_NPULSE  = 2,
  134.     LEN_PULSE_ST_SFB    = 6,
  135.     LEN_POFF    = 5,
  136.     LEN_PAMP    = 4,
  137.     NUM_PULSE_LINES = 4,
  138.     PULSE_OFFSET_AMP    = 4,
  139.     LEN_IND_CCE_FLG = 1,
  140.     LEN_NCC     = 3,
  141.     LEN_IS_CPE      = 1,
  142.     LEN_CC_LR       = 1,
  143.     LEN_CC_DOM      = 1,
  144.     LEN_CC_SGN      = 1,
  145.     LEN_CCH_GES     = 2,
  146.     LEN_CCH_CGP     = 1,
  147.     LEN_D_ALIGN     = 1,
  148.     LEN_D_CNT       = 8,
  149.     LEN_D_ESC       = 8,
  150.     LEN_F_CNT       = 4,
  151.     LEN_F_ESC       = 8,
  152.     LEN_NIBBLE      = 4,
  153.     LEN_BYTE        = 8,
  154.     LEN_PAD_DATA    = 8,
  155.     MAX_DBYTES  = ((1<<LEN_D_CNT) + (1<<LEN_D_ESC)),
  156.     LEN_PC_COMM     = 8,
  157.     /* FILL */
  158.     LEN_EX_TYPE     = 4,    /* don't use 0x0 or 0xA as extension type! */
  159.     EX_FILL     = 0,
  160.     EX_FILL_DATA    = 1,
  161.     EX_DRC      = 11,
  162.     /* sfb 40, coef 672, pred bw of 15.75 kHz at 48 kHz
  163.      * this is also the highest number of bins used
  164.      * by predictor for any sampling rate
  165.      */
  166.     MAX_PRED_SFB    = 40,   /* 48 kHz only, now obsolete */
  167.     MAX_PRED_BINS   = 672,
  168.     ID_SCE      = 0,
  169.     ID_CPE,
  170.     ID_CCE,
  171.     ID_LFE,
  172.     ID_DSE,
  173.     ID_PCE,
  174.     ID_FIL,
  175.     ID_END,
  176.     /* PLL's don't like idle channels! */
  177.     FILL_VALUE      = 0x55,
  178.     /*
  179.      * program configuration element
  180.      */
  181.     LEN_OBJECTTYPE = 2,
  182.     LEN_SAMP_IDX = 4,
  183.     LEN_NUM_ELE = 4,
  184.     LEN_NUM_LFE = 2,
  185.     LEN_NUM_DAT = 3,
  186.     LEN_NUM_CCE = 4,
  187.     LEN_MIX_PRES = 1,
  188.     LEN_MMIX_IDX = 2,
  189.     LEN_PSUR_ENAB = 1,
  190.     LEN_ELE_IS_CPE = 1,
  191.     LEN_IND_SW_CCE = 1,
  192.     LEN_COMMENT_BYTES = 8,
  193.     /*
  194.      * audio data interchange format header
  195.      */
  196.     LEN_ADIF_ID     = (32/8),
  197.     LEN_COPYRT_PRES = 1,
  198.     LEN_COPYRT_ID   = (72/8),
  199.     LEN_ORIG        = 1,
  200.     LEN_HOME        = 1,
  201.     LEN_BS_TYPE     = 1,
  202.     LEN_BIT_RATE    = 23,
  203.     LEN_NUM_PCE     = 4,
  204.     LEN_ADIF_BF     = 20,
  205.     XXX
  206. };
  207. #endif   /* #ifndef _interface_h_ */