blob: 05b5c7c34d73b598792f052a806dc3a6cae87eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*
* Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch)
*
* This is free software: you can redistribute it and/or modify
* it under the terms of the Artistic License 2.0 as published by
* The Perl Foundation.
*
* This source is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Artistic License 2.0 for more details.
*
* You should have received a copy of the Artistic License 2.0
* along the source as a COPYING file. If not, obtain it from
* http://www.perlfoundation.org/artistic_license_2_0.
*/
#include <stdlib.h>
#include <synthpod_bundle.h>
LV2_SYMBOL_EXPORT const LV2_Descriptor*
lv2_descriptor(uint32_t index)
{
switch(index)
{
case 0:
return &synthpod_source;
case 1:
return &synthpod_sink;
case 2:
return &synthpod_osc_source;
case 3:
return &synthpod_osc_sink;
case 4:
return &synthpod_cv_source;
case 5:
return &synthpod_cv_sink;
case 6:
return &synthpod_audio_source;
case 7:
return &synthpod_audio_sink;
case 8:
return &synthpod_midi_source;
case 9:
return &synthpod_midi_sink;
default:
return NULL;
}
}
|