view src/amidi-plug/backend-fluidsynth/b-fluidsynth.h @ 2150:04421592e6a3

Fixed an unexpected cddb error messaje when no cddb info is available
author Calin Crisan ccrisan@gmail.com
date Sat, 03 Nov 2007 01:23:56 +0200
parents e1c6b223431e
children
line wrap: on
line source

/*
*
* Author: Giacomo Lozito <james@develia.org>, (C) 2005-2006
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*
*/

#ifndef _B_FLUIDSYNTH_H
#define _B_FLUIDSYNTH_H 1

#include <fluidsynth.h>
#include <math.h>
#include "../i_common.h"
#include "../i_configure_file.h"
#include "../pcfg/i_pcfg.h"
#include "../i_midievent.h"


typedef struct
{
  fluid_settings_t * settings;
  fluid_synth_t * synth;

  GArray *soundfont_ids;

  gint ppq;
  gdouble cur_microsec_per_tick;
  guint tick_offset;

  GTimer * timer_seq;
  GTimer * timer_sample;

  guint sample_rate;
  gdouble last_sample_time;
}
sequencer_client_t;


void i_sleep( guint );
void i_soundfont_load( void );
void i_cfg_read( i_cfg_get_file_cb );
void i_cfg_free( void );

#endif /* !_B_FLUIDSYNTH_H */