volume.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2001 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  U.S. Patent Nos. 5,283,900  5,392,448
  7.  */
  8. /* "@(#) DSP/BIOS 4.51.0 05-23-01 (barracuda-i10)" */
  9. /*
  10.  *  ======== volume.h ========
  11.  *
  12.  */
  13. #ifndef __VOLUME_H
  14. #define __VOLUME_H
  15. #ifndef TRUE
  16. #define TRUE 1
  17. #endif
  18. #define BUFSIZE 8
  19. #define FRAMESPERBUFFER 10
  20. #define MINGAIN 1
  21. #define MAXGAIN 10
  22. #define MINCONTROL 0
  23. #define MAXCONTROL 19
  24. #define BASELOAD 1
  25. struct PARMS {
  26. int Beta;
  27. int EchoPower;
  28. int ErrorPower;
  29. int Ratio;
  30. struct PARMS *Link;
  31. };
  32. #endif /* __VOLUME_H */