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

流媒体/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: tns.h,v 1.5 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #ifndef _tns_h_
  28. #define _tns_h_
  29. #define TNS_MAX_BANDS   49
  30. #define TNS_MAX_ORDER   31
  31. #define TNS_MAX_WIN 8
  32. #define TNS_MAX_FILT    3
  33. typedef struct
  34. {
  35.     int start_band;
  36.     int stop_band;
  37.     int order;
  38.     int direction;
  39.     int coef_compress;
  40.     int coef[TNS_MAX_ORDER];
  41. } TNSfilt;
  42. typedef struct
  43. {
  44.     int n_filt;
  45.     int coef_res;
  46.     TNSfilt filt[TNS_MAX_FILT];
  47. } TNSinfo;
  48. typedef struct
  49. {
  50.     int n_subblocks;
  51.     TNSinfo info[TNS_MAX_WIN];
  52. } TNS_frame_info;
  53. #endif  /* _tns_h_ */