fluidsynth.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * fluidsynth.c: Software MIDI synthetizer using libfluidsynth
  3.  *****************************************************************************
  4.  * Copyright © 2007 Rémi Denis-Courmont
  5.  * $Id: 26bc6e95888390bce660d68fa88c5b27bc79b3e6 $
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20.  *****************************************************************************/
  21. #ifdef HAVE_CONFIG_H
  22. # include "config.h"
  23. #endif
  24. #include <vlc_common.h>
  25. #include <vlc_plugin.h>
  26. #include <vlc_aout.h>
  27. #include <vlc_codec.h>
  28. #include <fluidsynth.h>
  29. #define SOUNDFONT_TEXT N_("Sound fonts (required)")
  30. #define SOUNDFONT_LONGTEXT N_( 
  31.     "A sound fonts file is required for software synthesis." )
  32. static int  Open  (vlc_object_t *);
  33. static void Close (vlc_object_t *);
  34. vlc_module_begin ()
  35.     set_description (N_("FluidSynth MIDI synthetizer"))
  36.     set_capability ("decoder", 100)
  37.     set_shortname (N_("FluidSynth"))
  38.     set_category (CAT_INPUT)
  39.     set_subcategory (SUBCAT_INPUT_ACODEC)
  40.     set_callbacks (Open, Close)
  41.     add_file ("soundfont", "", NULL,
  42.               SOUNDFONT_TEXT, SOUNDFONT_LONGTEXT, false);
  43. vlc_module_end ()
  44. struct decoder_sys_t
  45. {
  46.     fluid_settings_t *settings;
  47.     fluid_synth_t    *synth;
  48.     int               soundfont;
  49.     audio_date_t      end_date;
  50. };
  51. static aout_buffer_t *DecodeBlock (decoder_t *p_dec, block_t **pp_block);
  52. static int Open (vlc_object_t *p_this)
  53. {
  54.     decoder_t *p_dec = (decoder_t *)p_this;
  55.     decoder_sys_t *p_sys;
  56.     if (p_dec->fmt_in.i_codec != VLC_FOURCC ('M', 'I', 'D', 'I'))
  57.         return VLC_EGENERIC;
  58.     char *font_path = var_CreateGetNonEmptyString (p_this, "soundfont");
  59.     if (font_path == NULL)
  60.     {
  61.         msg_Err (p_this, "sound fonts file required for synthesis");
  62.         return VLC_EGENERIC;
  63.     }
  64.     p_dec->fmt_out.i_cat = AUDIO_ES;
  65.     p_dec->fmt_out.audio.i_rate = 44100;
  66.     p_dec->fmt_out.audio.i_channels = 2;
  67.     p_dec->fmt_out.audio.i_original_channels =
  68.     p_dec->fmt_out.audio.i_physical_channels =
  69.         AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
  70.     p_dec->fmt_out.i_codec = VLC_FOURCC('f', 'l', '3', '2');
  71.     p_dec->fmt_out.audio.i_bitspersample = 32;
  72.     p_dec->pf_decode_audio = DecodeBlock;
  73.     p_sys = p_dec->p_sys = malloc (sizeof (*p_sys));
  74.     if (p_sys == NULL)
  75.     {
  76.         free (font_path);
  77.         return VLC_ENOMEM;
  78.     }
  79.     p_sys->settings = new_fluid_settings ();
  80.     p_sys->synth = new_fluid_synth (p_sys->settings);
  81.     /* FIXME: I bet this is not thread-safe */
  82.     p_sys->soundfont = fluid_synth_sfload (p_sys->synth, font_path, 1);
  83.     free (font_path);
  84.     if (p_sys->soundfont == -1)
  85.     {
  86.         msg_Err (p_this, "cannot load sound fonts file");
  87.         Close (p_this);
  88.         return VLC_EGENERIC;
  89.     }
  90.     aout_DateInit (&p_sys->end_date, p_dec->fmt_out.audio.i_rate);
  91.     aout_DateSet (&p_sys->end_date, 0);
  92.     return VLC_SUCCESS;
  93. }
  94. static void Close (vlc_object_t *p_this)
  95. {
  96.     decoder_sys_t *p_sys = ((decoder_t *)p_this)->p_sys;
  97.     if (p_sys->soundfont != -1)
  98.         fluid_synth_sfunload (p_sys->synth, p_sys->soundfont, 1);
  99.     delete_fluid_synth (p_sys->synth);
  100.     delete_fluid_settings (p_sys->settings);
  101.     free (p_sys);
  102. }
  103. static aout_buffer_t *DecodeBlock (decoder_t *p_dec, block_t **pp_block)
  104. {
  105.     block_t *p_block;
  106.     decoder_sys_t *p_sys = p_dec->p_sys;
  107.     aout_buffer_t *p_out = NULL;
  108.     if (pp_block == NULL)
  109.         return NULL;
  110.     p_block = *pp_block;
  111.     if (p_block == NULL)
  112.         return NULL;
  113.     *pp_block = NULL;
  114.     if (p_block->i_pts && !aout_DateGet (&p_sys->end_date))
  115.         aout_DateSet (&p_sys->end_date, p_block->i_pts);
  116.     else
  117.     if (p_block->i_pts < aout_DateGet (&p_sys->end_date))
  118.     {
  119.         msg_Warn (p_dec, "MIDI message in the past?");
  120.         goto drop;
  121.     }
  122.     if (p_block->i_buffer < 1)
  123.         goto drop;
  124.     uint8_t channel = p_block->p_buffer[0] & 0xf;
  125.     uint8_t p1 = (p_block->i_buffer > 1) ? (p_block->p_buffer[1] & 0x7f) : 0;
  126.     uint8_t p2 = (p_block->i_buffer > 2) ? (p_block->p_buffer[2] & 0x7f) : 0;
  127.     switch (p_block->p_buffer[0] & 0xf0)
  128.     {
  129.         case 0x80:
  130.             fluid_synth_noteoff (p_sys->synth, channel, p1);
  131.             break;
  132.         case 0x90:
  133.             fluid_synth_noteon (p_sys->synth, channel, p1, p2);
  134.             break;
  135.         case 0xB0:
  136.             fluid_synth_cc (p_sys->synth, channel, p1, p2);
  137.             break;
  138.         case 0xC0:
  139.             fluid_synth_program_change (p_sys->synth, channel, p1);
  140.             break;
  141.         case 0xE0:
  142.             fluid_synth_pitch_bend (p_sys->synth, channel, (p1 << 7) | p2);
  143.             break;
  144.     }
  145.     unsigned samples =
  146.         (p_block->i_pts - aout_DateGet (&p_sys->end_date)) * 441 / 10000;
  147.     if (samples == 0)
  148.         return NULL;
  149.     p_out = decoder_NewAudioBuffer (p_dec, samples);
  150.     if (p_out == NULL)
  151.         goto drop;
  152.     p_out->start_date = aout_DateGet (&p_sys->end_date );
  153.     p_out->end_date   = aout_DateIncrement (&p_sys->end_date, samples);
  154.     fluid_synth_write_float (p_sys->synth, samples,
  155.                              p_out->p_buffer, 0, 2,
  156.                              p_out->p_buffer, 1, 2);
  157. drop:
  158.     block_Release (p_block);
  159.     return p_out;
  160. }