summaryrefslogtreecommitdiff
path: root/ext/fluidsynth
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2013-03-22 08:54:54 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2013-03-22 08:54:54 +0100
commit30585c8f8ea84c73d7043f58b3cb02d502a68887 (patch)
treef4a748bbce223255b360837a9bf8aa35ea42892d /ext/fluidsynth
parent64498c576b5affaf8bcceaca876c35876f639ffe (diff)
downloadgstreamer-plugins-bad-30585c8f8ea84c73d7043f58b3cb02d502a68887.tar.gz
fluidsynth: log midi tick event
Diffstat (limited to 'ext/fluidsynth')
-rw-r--r--ext/fluidsynth/gstfluidsynth.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/fluidsynth/gstfluidsynth.c b/ext/fluidsynth/gstfluidsynth.c
index 4b28c139f..095e22dad 100644
--- a/ext/fluidsynth/gstfluidsynth.c
+++ b/ext/fluidsynth/gstfluidsynth.c
@@ -340,6 +340,9 @@ handle_buffer (GstFluidsynth * fluidsynth, GstBuffer * buffer)
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);
break;