Mercurial > hg > piper-cpp
annotate README.md @ 295:de5dc40f1830
Include headers needed to compile with GCC 15's -std=gnu23 default
```
In file included from ../piper-vamp-cpp/vamp-json/VampJson.h:55,
from ../piper-vamp-cpp/vamp-server/convert.cpp:36:
../piper-vamp-cpp/vamp-support/PluginHandleMapper.h:69:13: error: ‘uint32_t’ does not name a type
69 | typedef uint32_t Handle;
| ^~~~~~~~
../piper-vamp-cpp/vamp-support/PluginHandleMapper.h:39:1: note: ‘uint32_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
38 | #include "PluginOutputIdMapper.h"
+++ |+#include <cstdint>
39 |
../piper-vamp-cpp/ext/json11/json11.cpp: In function ‘void json11::dump(const std::string&, std::string&)’:
../piper-vamp-cpp/ext/json11/json11.cpp:95:32: error: ‘uint8_t’ does not name a type
95 | } else if (static_cast<uint8_t>(ch) <= 0x1f) {
| ^~~~~~~
../piper-vamp-cpp/ext/json11/json11.cpp:25:1: note: ‘uint8_t’ is defined in header ‘<cstdint>’; this is probably fixable by adding ‘#include <cstdint>’
24 | #include <cmath>
+++ |+#include <cstdint>
25 | #include <cstdlib>
```
Signed-off-by: Michel Lind <salimma@fedoraproject.org>
author | Michel Lind <salimma@fedoraproject.org> |
---|---|
date | Fri, 24 Jan 2025 11:38:28 -0600 |
parents | b0f0e257d8af |
children |
rev | line source |
---|---|
cannam@162 | 1 |
cannam@217 | 2 # Piper Vamp C++ |
cannam@162 | 3 |
cannam@162 | 4 Supporting code in C++ for the Piper audio feature extractor protocol, |
cannam@162 | 5 primarily for making Vamp plugins work with the Piper protocol. |
cannam@162 | 6 |
cannam@165 | 7 ## Contents |
cannam@162 | 8 |
cannam@162 | 9 * code to adapt Piper messages to the classes used in the Vamp SDK |
cannam@215 | 10 * a command-line converter between Piper serialisations that goes |
cannam@215 | 11 via Vamp SDK classes |
cannam@162 | 12 * a server that makes Vamp plugins available via Piper messages |
cannam@162 | 13 |
cannam@165 | 14 ## Directory index |
cannam@162 | 15 |
cannam@164 | 16 *vamp-json* - convert between Piper JSON messages and Vamp SDK classes |
cannam@162 | 17 |
cannam@164 | 18 *vamp-capnp* - convert between Piper Cap'n Proto messages and Vamp |
cannam@164 | 19 abstractions |
cannam@162 | 20 |
cannam@164 | 21 *vamp-support* - support classes for the above |
cannam@162 | 22 |
cannam@164 | 23 *vamp-server* - main programs for command-line converter and server |
cannam@162 | 24 |
cannam@164 | 25 *vamp-client* - logic to make Piper servers available to Vamp hosts |
cannam@164 | 26 through a Vamp-like API |
cannam@162 | 27 |
cannam@164 | 28 *vamp-client/qt* - logic specific to hosts written with Qt |
cannam@162 | 29 |
cannam@166 | 30 *ext* - json11 and base-n third-party libraries: see individual |
cannam@166 | 31 directories for copyright details |
cannam@166 | 32 |
cannam@215 | 33 [](https://travis-ci.org/piper-audio/piper-vamp-cpp) |
cannam@162 | 34 |
cannam@162 | 35 ## Authors and licensing |
cannam@162 | 36 |
cannam@204 | 37 Written by Chris Cannam and Lucas Thompson at the Centre for Digital |
cannam@204 | 38 Music, Queen Mary, University of London. |
cannam@162 | 39 |
cannam@283 | 40 Copyright (c) 2015-2019 Queen Mary, University of London, provided |
cannam@162 | 41 under a BSD-style licence. See the file COPYING for details. |
cannam@162 | 42 |