blob: cdb3549a319ba7f492e9822451028b85ff6eedc7 (
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
56
|
/*
* 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 <lua_lv2.h>
LV2_SYMBOL_EXPORT const LV2_Descriptor*
lv2_descriptor(uint32_t index)
{
switch(index)
{
case 0:
return &c1xc1;
case 1:
return &c2xc2;
case 2:
return &c4xc4;
case 3:
return &a1xa1;
case 4:
return &a2xa2;
case 5:
return &a4xa4;
case 6:
return &a1xc1;
case 7:
return &a1xc2;
case 8:
return &a1xc4;
case 9:
return &c1xa1;
case 10:
return &c2xa1;
case 11:
return &c4xa1;
default:
return NULL;
}
}
|