Top |
gboolean
ags_midi_util_is_key_pressure (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_change_parameter (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_change_program (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_change_pressure (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_quarter_frame (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_song_position (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_song_select (guchar *buffer
);
Since: 3.0.0
gboolean
ags_midi_util_is_tune_request (guchar *buffer
);
Since: 3.0.0
gboolean ags_midi_util_get_key_on (guchar *buffer
,gint *channel
,gint *key
,gint *velocity
);
Get key on fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
key |
the return location of key. |
[out] |
velocity |
the return location of velocity. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_key_off (guchar *buffer
,gint *channel
,gint *key
,gint *velocity
);
Get key off fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
key |
the return location of key. |
[out] |
velocity |
the return location of velocity. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_key_pressure (guchar *buffer
,gint *channel
,gint *key
,gint *pressure
);
Get key pressure fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
key |
the return location of key. |
[out] |
pressure |
the return location of pressure. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_change_parameter (guchar *buffer
,gint *channel
,gint *control
,gint *value
);
Get change parameter fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
control |
the return location of control. |
[out] |
value |
the return location of value. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_pitch_bend (guchar *buffer
,gint *channel
,gint *pitch
,gint *transmitter
);
Get pitch bend fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
pitch |
the return location of pitch. |
[out] |
transmitter |
the return location of transmitter. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_change_program (guchar *buffer
,gint *channel
,gint *program
);
Get change program fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
program |
the return location of program. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_change_pressure (guchar *buffer
,gint *channel
,gint *pressure
);
Get change pressure fields of buffer
.
buffer |
the MIDI buffer |
|
channel |
the return location of channel. |
[out] |
pressure |
the return location of pressure. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_sysex (guchar *buffer
,guchar **data
,gint *length
);
Get sysex fields of buffer
.
buffer |
the MIDI buffer |
|
data |
the return location of data. |
[out][transfer full] |
length |
the return location of length. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_quarter_frame (guchar *buffer
,gint *message_type
,gint *values
);
Get quarter frame fields of buffer
.
buffer |
the MIDI buffer |
|
message_type |
the return location of message type. |
[out] |
values |
the return location of values. |
[out] |
Since: 3.13.0
gboolean ags_midi_util_get_song_position (guchar *buffer
,gint *song_position
);
Get song position fields of buffer
.
Since: 3.13.0
gboolean ags_midi_util_get_song_select (guchar *buffer
,gint *song_select
);
Get song select fields of buffer
.
Since: 3.13.0
guchar * ags_midi_util_to_smf (guchar *midi_buffer
,guint buffer_length
,glong delta_time
,guint *smf_buffer_length
);
Convert real-time MIDI to SMF.
midi_buffer |
the midi buffer |
|
buffer_length |
the buffer length |
|
delta_time |
the delta time |
|
smf_buffer_length |
the return location of resulting length |
Since: 3.0.0
guint ags_midi_util_delta_time_to_offset (gdouble delay_factor
,glong division
,glong tempo
,glong bpm
,glong delta_time
);
Delta time to offset
Since: 3.0.0