fluid_conv.h
上传用户:tjmskj2
上传日期:2020-08-17
资源大小:577k
文件大小:2k
源码类别:

midi

开发平台:

C/C++

  1. /* FluidSynth - A Software Synthesizer
  2.  *
  3.  * Copyright (C) 2003  Peter Hanappe and others.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Library General Public License
  7.  * as published by the Free Software Foundation; either version 2 of
  8.  * the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Library General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Library General Public
  16.  * License along with this library; if not, write to the Free
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  18.  * 02111-1307, USA
  19.  */
  20. #ifndef _FLUID_CONV_H
  21. #define _FLUID_CONV_H
  22. #include "fluidsynth_priv.h"
  23. #define FLUID_CENTS_HZ_SIZE     1200
  24. #define FLUID_VEL_CB_SIZE       128
  25. #define FLUID_CB_AMP_SIZE       961
  26. #define FLUID_ATTEN_AMP_SIZE    1441
  27. #define FLUID_PAN_SIZE          1002
  28. /* EMU 8k/10k don't follow spec in regards to volume attenuation.
  29.  * This factor is used in the equation pow (10.0, cb / FLUID_ATTEN_POWER_FACTOR).
  30.  * By the standard this should be -200.0. */
  31. /* 07/11/2008 modified by S. Christian Collins for increased velocity sensitivity.  Now it equals the response of EMU10K1 programming.*/
  32. #define FLUID_ATTEN_POWER_FACTOR  (-200.0) /* was (-531.509)*/
  33. void fluid_conversion_config(void);
  34. fluid_real_t fluid_ct2hz_real(fluid_real_t cents);
  35. fluid_real_t fluid_ct2hz(fluid_real_t cents);
  36. fluid_real_t fluid_cb2amp(fluid_real_t cb);
  37. fluid_real_t fluid_atten2amp(fluid_real_t atten);
  38. fluid_real_t fluid_tc2sec(fluid_real_t tc);
  39. fluid_real_t fluid_tc2sec_delay(fluid_real_t tc);
  40. fluid_real_t fluid_tc2sec_attack(fluid_real_t tc);
  41. fluid_real_t fluid_tc2sec_release(fluid_real_t tc);
  42. fluid_real_t fluid_act2hz(fluid_real_t c);
  43. fluid_real_t fluid_hz2ct(fluid_real_t c);
  44. fluid_real_t fluid_pan(fluid_real_t c, int left);
  45. fluid_real_t fluid_concave(fluid_real_t val);
  46. fluid_real_t fluid_convex(fluid_real_t val);
  47. extern fluid_real_t fluid_ct2hz_tab[FLUID_CENTS_HZ_SIZE];
  48. extern fluid_real_t fluid_vel2cb_tab[FLUID_VEL_CB_SIZE];
  49. extern fluid_real_t fluid_cb2amp_tab[FLUID_CB_AMP_SIZE];
  50. extern fluid_real_t fluid_posbp_tab[128];
  51. extern fluid_real_t fluid_concave_tab[128];
  52. extern fluid_real_t fluid_convex_tab[128];
  53. extern fluid_real_t fluid_pan_tab[FLUID_PAN_SIZE];
  54. #endif /* _FLUID_CONV_H */