Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
tempo_track.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: © 2019-2020 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
9
10#ifndef __SCHEMAS_AUDIO_TEMPO_TRACK_H__
11#define __SCHEMAS_AUDIO_TEMPO_TRACK_H__
12
13typedef enum BeatUnit_v1
14{
15 Z_BEAT_UNIT_2_v1,
16 Z_BEAT_UNIT_4_v1,
17 Z_BEAT_UNIT_8_v1,
18 Z_BEAT_UNIT_16_v1
19} BeatUnit_v1;
20
21static const cyaml_strval_t beat_unit_strings_v1[] = {
22 { "2", Z_BEAT_UNIT_2_v1 },
23 { "4", Z_BEAT_UNIT_4_v1 },
24 { "8", Z_BEAT_UNIT_8_v1 },
25 { "16", Z_BEAT_UNIT_16_v1 },
26};
27
28#endif