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 
  5. and edited by Takashi Koike (Sony Corporation) in the course of 
  6. development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 
  7. 14496-1,2 and 3. This software module is an implementation of a part of one or more 
  8. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 
  9. Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio 
  10. standards free license to this software module or modifications thereof for use in 
  11. hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  12. Audio  standards. Those intending to use this software module in hardware or 
  13. software products are advised that this use may infringe existing patents. 
  14. The original developer of this software module and his/her company, the subsequent 
  15. editors and their companies, and ISO/IEC have no liability for use of this software 
  16. module or modifications thereof in an implementation. Copyright is not released for 
  17. non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  18. retains full right to use the code for his/her  own purpose, assign or donate the 
  19. code to a third party and to inhibit third party from using the code for non 
  20. MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  21. be included in all copies or derivative works." 
  22. Copyright(c)1996.
  23.  *                                                                           *
  24.  ****************************************************************************/
  25. #ifndef BLOCK_H
  26. #define BLOCK_H 1
  27. #include "transfo.h"
  28. #include "dolby_def.h"
  29. #define IN_DATATYPE  double
  30. #define OUT_DATATYPE double
  31. #define BLOCK_LEN_LONG    1024
  32. #define BLOCK_LEN_MEDIUM   512
  33. #define BLOCK_LEN_SHORT    128
  34. #define BLOCK_LEN_LONG_S   960
  35. #define BLOCK_LEN_MEDIUM_S 480
  36. #define BLOCK_LEN_SHORT_S  120
  37. #define BLOCK_LEN_LONG_SSR 256
  38. #define BLOCK_LEN_SHORT_SSR 32
  39. #define NWINLONG (BLOCK_LEN_LONG)
  40. #define ALFALONG 4.0
  41. #define NWINSHORT (BLOCK_LEN_SHORT)
  42. #define ALFASHORT 7.0
  43. #define NWINFLAT (NWINLONG) /* flat params */
  44. #define NWINADV (NWINLONG-NWINSHORT) /* Advanced flat params */
  45. #define NFLAT ((NWINFLAT-NWINSHORT)/2)
  46. #define NADV0 ((NWINADV-NWINSHORT)/2)
  47. typedef enum {
  48.   WS_FHG,
  49.   WS_DOLBY,
  50.   N_WINDOW_SHAPES
  51. } WINDOW_SHAPE;
  52. typedef enum {
  53. OVERLAPPED_MODE,
  54. NON_OVERLAPPED_MODE
  55. } Mdct_in, Imdct_out;
  56. typedef enum {
  57.     PRED_NONE,
  58.     NOK_LTP,
  59.     NOK_BWP,
  60.     MONOPRED
  61. } PRED_TYPE;
  62. #endif /* BLOCK_H */