Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/fluidsynth/src/synth/fluid_tuning.h
4396 views
1
/* FluidSynth - A Software Synthesizer
2
*
3
* Copyright (C) 2003 Peter Hanappe and others.
4
*
5
* This library is free software; you can redistribute it and/or
6
* modify it under the terms of the GNU Lesser General Public License
7
* as published by the Free Software Foundation; either version 2.1 of
8
* the License, or (at your option) any later version.
9
*
10
* This library is distributed in the hope that it will be useful, but
11
* WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
* Lesser General Public License for more details.
14
*
15
* You should have received a copy of the GNU Lesser General Public
16
* License along with this library; if not, write to the Free
17
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
* 02110-1301, USA
19
*/
20
21
22
/*
23
24
More information about micro tuning can be found at:
25
26
https://www.midi.org/about-midi/tuning.htm
27
https://www.midi.org/about-midi/tuning-scale.htm
28
https://www.midi.org/about-midi/tuning_extens.htm
29
30
*/
31
32
#ifndef _FLUID_TUNING_H
33
#define _FLUID_TUNING_H
34
35
#include "fluidsynth_priv.h"
36
37
struct _fluid_tuning_t
38
{
39
char *name;
40
int bank;
41
int prog;
42
double pitch[128]; /* the pitch of every key, in cents */
43
fluid_atomic_int_t refcount; /* Tuning reference count */
44
};
45
46
fluid_tuning_t *new_fluid_tuning(const char *name, int bank, int prog);
47
void delete_fluid_tuning(fluid_tuning_t *tuning);
48
fluid_tuning_t *fluid_tuning_duplicate(fluid_tuning_t *tuning);
49
void fluid_tuning_ref(fluid_tuning_t *tuning);
50
int fluid_tuning_unref(fluid_tuning_t *tuning, int count);
51
52
int fluid_tuning_set_name(fluid_tuning_t *tuning, const char *name);
53
char *fluid_tuning_get_name(fluid_tuning_t *tuning);
54
55
#define fluid_tuning_get_bank(_t) ((_t)->bank)
56
#define fluid_tuning_get_prog(_t) ((_t)->prog)
57
58
void fluid_tuning_set_pitch(fluid_tuning_t *tuning, int key, double pitch);
59
#define fluid_tuning_get_pitch(_t, _key) ((_t)->pitch[_key])
60
61
void fluid_tuning_set_octave(fluid_tuning_t *tuning, const double *pitch_deriv);
62
63
void fluid_tuning_set_all(fluid_tuning_t *tuning, const double *pitch);
64
#define fluid_tuning_get_all(_t) (&(_t)->pitch[0])
65
66
67
68
69
#endif /* _FLUID_TUNING_H */
70
71