From 30585c8f8ea84c73d7043f58b3cb02d502a68887 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 22 Mar 2013 08:54:54 +0100 Subject: [PATCH] fluidsynth: log midi tick event --- ext/fluidsynth/gstfluidsynth.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/fluidsynth/gstfluidsynth.c b/ext/fluidsynth/gstfluidsynth.c index 4b28c139f9..095e22dad0 100644 --- a/ext/fluidsynth/gstfluidsynth.c +++ b/ext/fluidsynth/gstfluidsynth.c @@ -339,6 +339,9 @@ handle_buffer (GstFluidsynth * fluidsynth, GstBuffer * buffer) fluid_synth_sysex (fluidsynth->synth, (char *) info.data + 1, info.size - 1, NULL, NULL, NULL, 0); + break; + case 0xf9: + GST_LOG_OBJECT (fluidsynth, "midi tick"); break; default: GST_WARNING_OBJECT (fluidsynth, "unhandled event 0x%02x", event);