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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************
  2. This software module was originally developed by
  3. Mikko Suonio (Nokia)
  4. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  5. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  6. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  7. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  8. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  9. software module or modifications thereof for use in hardware or
  10. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  11. standards. Those intending to use this software module in hardware or
  12. software products are advised that this use may infringe existing
  13. patents. The original developer of this software module and his/her
  14. company, the subsequent editors and their companies, and ISO/IEC have
  15. no liability for use of this software module or modifications thereof
  16. in an implementation. Copyright is not released for non MPEG-2
  17. NBC/MPEG-4 Audio conforming products. The original developer retains
  18. full right to use the code for his/her own purpose, assign or donate
  19. the code to a third party and to inhibit third party from using the
  20. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  21. copyright notice must be included in all copies or derivative works.
  22. Copyright (c) 1997.
  23. ***************************************************************************/
  24. /*
  25.  * $Id: nok_ltp_common_internal.h,v 1.5 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #ifndef _NOK_LTP_COMMON_INTERNAL_H
  28. #define _NOK_LTP_COMMON_INTERNAL_H
  29. /*
  30.   Purpose:      Number of LTP coefficients. */
  31. #define LPC 1
  32. /*
  33.   Purpose:      Maximum LTP lag.  */
  34. #define MAX_LTP_DELAY 2048
  35. /*
  36.   Purpose:  Length of the bitstream element ltp_data_present.  */
  37. #define LEN_LTP_DATA_PRESENT 1
  38. /*
  39.   Purpose:  Length of the bitstream element ltp_lag.  */
  40. #define LEN_LTP_LAG 11
  41. /*
  42.   Purpose:  Length of the bitstream element ltp_coef.  */
  43. #define LEN_LTP_COEF 3
  44. /*
  45.   Purpose:  Length of the bitstream element ltp_short_used.  */
  46. #define LEN_LTP_SHORT_USED 1
  47. /*
  48.   Purpose:  Length of the bitstream element ltp_short_lag_present.  */
  49. #define LEN_LTP_SHORT_LAG_PRESENT 1
  50. /*
  51.   Purpose:  Length of the bitstream element ltp_short_lag.  */
  52. #define LEN_LTP_SHORT_LAG 5
  53. /*
  54.   Purpose:  Offset of the lags written in the bitstream.  */
  55. #define NOK_LTP_LAG_OFFSET 16
  56. /*
  57.   Purpose:  Length of the bitstream element ltp_long_used.  */
  58. #define LEN_LTP_LONG_USED 1
  59. /*
  60.   Purpose:  Upper limit for the number of scalefactor bands
  61.         which can use lt prediction with long windows.
  62.   Explanation:  Bands 0..NOK_MAX_LT_PRED_SFB-1 can use lt prediction.  */
  63. #define NOK_MAX_LT_PRED_LONG_SFB 40
  64. /*
  65.   Purpose:  Upper limit for the number of scalefactor bands
  66.         which can use lt prediction with short windows.
  67.   Explanation:  Bands 0..NOK_MAX_LT_PRED_SFB-1 can use lt prediction.  */
  68. #define NOK_MAX_LT_PRED_SHORT_SFB 8
  69. /*
  70.    Purpose:      Buffer offset to maintain block alignment.
  71.    Explanation:  This is only used for a short window sequence.  */
  72. #define SHORT_SQ_OFFSET (BLOCK_LEN_LONG-(BLOCK_LEN_SHORT*4+BLOCK_LEN_SHORT/2))
  73. /*
  74.   Purpose:  Number of codes for LTP weight. */
  75. #define CODESIZE 8
  76. /*
  77.    Purpose:      Float type for external data.
  78.    Explanation:  - */
  79. typedef Float float_ext;
  80. /*
  81.   Purpose:  Codebook for LTP weight coefficients.  */
  82. static Float codebook[CODESIZE] =
  83. {
  84.   0.570829f,
  85.   0.696616f,
  86.   0.813004f,
  87.   0.911304f,
  88.   0.984900f,
  89.   1.067894f,
  90.   1.194601f,
  91.   1.369533f
  92. };
  93. #endif /* _NOK_LTP_COMMON_INTERNAL_H */