c@49
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@49
|
2
|
c@49
|
3 /*
|
c@49
|
4 Vampipe
|
c@49
|
5
|
c@49
|
6 Centre for Digital Music, Queen Mary, University of London.
|
c@49
|
7 Copyright 2006-2016 Chris Cannam and QMUL.
|
c@49
|
8
|
c@49
|
9 Permission is hereby granted, free of charge, to any person
|
c@49
|
10 obtaining a copy of this software and associated documentation
|
c@49
|
11 files (the "Software"), to deal in the Software without
|
c@49
|
12 restriction, including without limitation the rights to use, copy,
|
c@49
|
13 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@49
|
14 of the Software, and to permit persons to whom the Software is
|
c@49
|
15 furnished to do so, subject to the following conditions:
|
c@49
|
16
|
c@49
|
17 The above copyright notice and this permission notice shall be
|
c@49
|
18 included in all copies or substantial portions of the Software.
|
c@49
|
19
|
c@49
|
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@49
|
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@49
|
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@49
|
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
c@49
|
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@49
|
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@49
|
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@49
|
27
|
c@49
|
28 Except as contained in this notice, the names of the Centre for
|
c@49
|
29 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@49
|
30 shall not be used in advertising or otherwise to promote the sale,
|
c@49
|
31 use or other dealings in this Software without prior written
|
c@49
|
32 authorization.
|
c@49
|
33 */
|
c@49
|
34
|
c@49
|
35 #ifndef VAMPIPE_PLUGIN_ID_MAPPER_H
|
c@49
|
36 #define VAMPIPE_PLUGIN_ID_MAPPER_H
|
c@49
|
37
|
c@49
|
38 #include <vamp-hostsdk/Plugin.h>
|
c@49
|
39
|
c@49
|
40 #include <map>
|
c@49
|
41 #include <string>
|
c@49
|
42
|
c@49
|
43 namespace vampipe {
|
c@49
|
44
|
c@49
|
45 class PluginOutputIdMapper
|
c@49
|
46 {
|
c@49
|
47 public:
|
c@51
|
48 virtual ~PluginOutputIdMapper() { }
|
c@60
|
49
|
c@60
|
50 /**
|
c@60
|
51 * Return the index of the given output id in the plugin. The
|
c@60
|
52 * first output has index 0. If the given output id is unknown,
|
c@60
|
53 * return -1.
|
c@60
|
54 */
|
c@60
|
55 virtual int idToIndex(std::string outputId) const noexcept = 0;
|
c@60
|
56
|
c@60
|
57 /**
|
c@60
|
58 * Return the id of the output with the given index in the
|
c@60
|
59 * plugin. If the index is out of range, return the empty string.
|
c@60
|
60 */
|
c@60
|
61 virtual std::string indexToId(int index) const noexcept = 0;
|
c@49
|
62 };
|
c@49
|
63
|
c@49
|
64 }
|
c@49
|
65
|
c@49
|
66 #endif
|