Skip to content

Commit

Permalink
Add 4 more output tracks to Syntakt
Browse files Browse the repository at this point in the history
  • Loading branch information
dagargo committed Apr 28, 2022
1 parent 695df17 commit b97e812
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions src/overwitch.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,16 @@ static const struct ow_device_desc STAKT_DESC = {
.inputs = 8,
.outputs = 16,
.input_track_names =
{"Main L Input", "Main R Input", "Analog FX L Input", "Analog FX L Input",
{"Main L Input", "Main R Input", "Analog FX L Input", "Analog FX R Input",
"Track 9 Input", "Track 10 Input", "Track 11 Input", "Track 12 Input"},
.output_track_names =
{"Main L", "Main R", "Analog FX L", "Analog FX L", "Track 1", "Track 2",
"Track 3", "Track 4", "Track 5", "Track 6", "Track 7", "Track 8",
"Track 9", "Track 10", "Track 11", "Track 12"},
{"Main L", "Main R", "Track 1", "Track 2", "Track 3", "Track 4",
"Track 5", "Track 6", "Track 7", "Track 8", "Track 9", "Track 10",
"Track 11", "Track 12", "Analog FX L", "Analog FX R",
"Delay/Reverb L", "Delay/Reverb R", "Input L", "Input R"},
.output_track_scales =
{OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32,
OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32,
OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32,
OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32,
OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32, OW_CONV_SCALE_32}
Expand Down
2 changes: 1 addition & 1 deletion src/overwitch.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define OB_SAMPLE_RATE 48000.0
#define OB_FRAMES_PER_BLOCK 7
#define OB_BYTES_PER_SAMPLE sizeof(float)
#define OB_MAX_TRACKS 16
#define OB_MAX_TRACKS 32
#define OB_MIDI_EVENT_SIZE 4

#define OW_DEFAULT_RT_PROPERTY 20
Expand Down

0 comments on commit b97e812

Please sign in to comment.