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

流媒体/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. #ifndef _NOK_LTP_COMMON_H
  25. #define _NOK_LTP_COMMON_H
  26. /*
  27.   Macro: MAX_SHORT_WINDOWS
  28.   Purpose: Number of short windows in one long window.
  29.   Explanation: -  */
  30. #ifndef MAX_SHORT_WINDOWS
  31. #define MAX_SHORT_WINDOWS NSHORT
  32. #endif
  33. /*
  34.   Macro: MAX_SCFAC_BANDS
  35.   Purpose: Maximum number of scalefactor bands in one frame.
  36.   Explanation: -  */
  37. #ifndef MAX_SCFAC_BANDS
  38. #define MAX_SCFAC_BANDS MAXBANDS
  39. #endif
  40. /*
  41.   Macro: BLOCK_LEN_LONG
  42.   Purpose: Length of one long window
  43.   Explanation: -  */
  44. #ifndef BLOCK_LEN_LONG
  45. #define BLOCK_LEN_LONG LN2
  46. #endif
  47. /*
  48.   Macro: NOK_MAX_BLOCK_LEN_LONG
  49.   Purpose: Informs the routine of the maximum block size used.
  50.   Explanation: -  */
  51. #define NOK_MAX_BLOCK_LEN_LONG (BLOCK_LEN_LONG) 
  52. /*
  53.   Macro: NOK_LT_BLEN
  54.   Purpose: Length of the history buffer.
  55.   Explanation: Has to hold 1.5 long windows of time domain data. */
  56. #ifndef NOK_LT_BLEN
  57. #define NOK_LT_BLEN (3 * NOK_MAX_BLOCK_LEN_LONG)
  58. #endif
  59. /*
  60.   Type: NOK_LT_PRED_STATUS
  61.   Purpose: Type of the struct holding the LTP encoding parameters.
  62.   Explanation: -  */
  63. typedef struct
  64.   {
  65.     int weight_idx;
  66.     float weight;
  67.     int sbk_prediction_used[MAX_SHORT_WINDOWS];
  68.     int sfb_prediction_used[MAX_SCFAC_BANDS];
  69.     int delay[MAX_SHORT_WINDOWS];
  70.     int global_pred_flag;
  71.     int side_info;
  72.     float *buffer;
  73.   }
  74. NOK_LT_PRED_STATUS;
  75. #endif /* _NOK_LTP_COMMON_H */