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