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

流媒体/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: block.h,v 1.5 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #ifndef BLOCK_H
  28. #define BLOCK_H 1
  29. #define IN_DATATYPE  double
  30. #define OUT_DATATYPE double
  31. #ifndef BLOCK_LEN_LONG
  32. #define BLOCK_LEN_LONG   1024
  33. #endif
  34. #define BLOCK_LEN_SHORT  128
  35. #define NWINLONG    (BLOCK_LEN_LONG)
  36. #define ALFALONG    4.0
  37. #define NWINSHORT   (BLOCK_LEN_SHORT)
  38. #define ALFASHORT   7.0
  39. #define NWINFLAT    (NWINLONG)                  /* flat params */
  40. #define NWINADV     (NWINLONG-NWINSHORT)        /* Advanced flat params */
  41. #define NFLAT       ((NWINFLAT-NWINSHORT)/2)
  42. #define NADV0       ((NWINADV-NWINSHORT)/2)
  43. #define START_OFFSET 0
  44. #define SHORT_IN_START_OFFSET 5
  45. #define STOP_OFFSET 3
  46. #define SHORT_IN_STOP_OFFSET 0
  47. #define WEAVE_START 0       /* type parameter for start blocks */
  48. #define WEAVE_STOP  1       /* type paremeter for stop blocks */
  49. typedef enum {
  50.     WS_FHG, WS_DOLBY, N_WINDOW_SHAPES
  51. }
  52. Window_shape;
  53. typedef enum {
  54.     WT_LONG,
  55.     WT_SHORT,
  56.     WT_FLAT,
  57.     WT_ADV,         /* Advanced flat window */
  58.     N_WINDOW_TYPES
  59. }
  60. WINDOW_TYPE;
  61. typedef enum {                  /* ADVanced transform types */
  62.     LONG_BLOCK,
  63.     START_BLOCK,
  64.     SHORT_BLOCK,
  65.     STOP_BLOCK,
  66.     START_ADV_BLOCK,
  67.     STOP_ADV_BLOCK,
  68.     START_FLAT_BLOCK,
  69.     STOP_FLAT_BLOCK,
  70.     N_BLOCK_TYPES
  71. }
  72. BLOCK_TYPE;
  73. void unfold (Float *data_in, Float *data_out, int inLeng);
  74. void InitBlock(void);
  75. void EndBlock(void);
  76. void ITransformBlock(faacDecHandle hDecoder,Float* dataPtr, BLOCK_TYPE wT, Wnd_Shape *ws, Float *state);
  77. void TransformBlock(faacDecHandle hDecoder,Float* dataPtr, BLOCK_TYPE bT, Wnd_Shape *wnd_shape);
  78. #endif  /*  BLOCK_H */