audio.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. #ifndef _FLUIDSYNTH_AUDIO_H
  21. #define _FLUIDSYNTH_AUDIO_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26.  * @file audio.h
  27.  * @brief Functions for audio driver output.
  28.  * @defgroup AudioFunctions Functions for audio output
  29.  *
  30.  * Defines functions for creating audio driver output.  Use
  31.  * new_fluid_audio_driver() to create a new audio driver for a given synth
  32.  * and configuration settings.  The function new_fluid_audio_driver2() can be
  33.  * used if custom audio processing is desired before the audio is sent to the
  34.  * audio driver (although it is not as efficient).
  35.  *
  36.  * @sa @ref CreatingAudioDriver
  37.  */
  38. /**
  39.  * Callback function type used with new_fluid_audio_driver2() to allow for
  40.  * custom user audio processing before the audio is sent to the driver.  This
  41.  * function is responsible for rendering the audio to the buffers.
  42.  * @param data The user data parameter as passed to new_fluid_audio_driver2().
  43.  * @param len Length of the audio in frames.
  44.  * @param nin Count of buffers in 'in'
  45.  * @param in Not used currently
  46.  * @param nout Count of arrays in 'out' (i.e., channel count)
  47.  * @param out Output buffers, one for each channel
  48.  * @return Should return 0 on success, non-zero if an error occured.
  49.  */
  50. typedef int (*fluid_audio_func_t)(void* data, int len,
  51.  int nin, float** in,
  52.  int nout, float** out);
  53. FLUIDSYNTH_API fluid_audio_driver_t* new_fluid_audio_driver(fluid_settings_t* settings,
  54.  fluid_synth_t* synth);
  55. FLUIDSYNTH_API fluid_audio_driver_t* new_fluid_audio_driver2(fluid_settings_t* settings,
  56.   fluid_audio_func_t func,
  57.   void* data);
  58. FLUIDSYNTH_API void delete_fluid_audio_driver(fluid_audio_driver_t* driver);
  59. FLUIDSYNTH_API fluid_file_renderer_t *new_fluid_file_renderer(fluid_synth_t* synth);
  60. FLUIDSYNTH_API int fluid_file_renderer_process_block(fluid_file_renderer_t* dev);
  61. FLUIDSYNTH_API void delete_fluid_file_renderer(fluid_file_renderer_t* dev);
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif /* _FLUIDSYNTH_AUDIO_H */