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

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. /* RAM SoundFonts: October 2002 - Antoine Schmitt */
  21. #ifndef _FLUIDSYNTH_RAMSFONT_H
  22. #define _FLUIDSYNTH_RAMSFONT_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /**
  27.  * @file ramsfont.h
  28.  * @brief API for creating and managing SoundFont instruments in RAM.
  29.  *
  30.  * RAM SoundFonts live in ram. The samples are loaded from files
  31.  * or from RAM.  A minimal API manages a soundFont structure,
  32.  * with presets, each preset having only one preset-zone, which
  33.  * instrument has potentially many instrument-zones.  No global
  34.  * zones, and nor generator nor modulator other than the default
  35.  * ones are permitted.  This may be extensible in the future.
  36.  */
  37. FLUIDSYNTH_API fluid_sfont_t* fluid_ramsfont_create_sfont(void);
  38. FLUIDSYNTH_API int fluid_ramsfont_set_name(fluid_ramsfont_t* sfont, const char *name);
  39. FLUIDSYNTH_API 
  40. int fluid_ramsfont_add_izone(fluid_ramsfont_t* sfont,
  41. unsigned int bank, unsigned int num, fluid_sample_t* sample,
  42. int lokey, int hikey);
  43. FLUIDSYNTH_API
  44. int fluid_ramsfont_remove_izone(fluid_ramsfont_t* sfont,
  45. unsigned int bank, unsigned int num, fluid_sample_t* sample);
  46. FLUIDSYNTH_API
  47. int fluid_ramsfont_izone_set_gen(fluid_ramsfont_t* sfont,
  48. unsigned int bank, unsigned int num, fluid_sample_t* sample,
  49. int gen_type, float value);
  50. FLUIDSYNTH_API
  51. int fluid_ramsfont_izone_set_loop(fluid_ramsfont_t* sfont,
  52. unsigned int bank, unsigned int num, fluid_sample_t* sample,
  53. int on, float loopstart, float loopend);
  54. FLUIDSYNTH_API fluid_sample_t* new_fluid_ramsample(void);
  55. FLUIDSYNTH_API int delete_fluid_ramsample(fluid_sample_t* sample);
  56. FLUIDSYNTH_API int fluid_sample_set_name(fluid_sample_t* sample, const char *name);
  57. FLUIDSYNTH_API 
  58. int fluid_sample_set_sound_data(fluid_sample_t* sample, short *data, 
  59.        unsigned int nbframes, short copy_data, int rootkey);
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* _FLUIDSYNTH_RAMSFONT_H */