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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
// Copyright 2007-2019 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
#include <lilv/lilv.h>
#include <lv2/core/lv2.h>
#include <math.h>
#include <sndfile.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(__GNUC__)
# define LILV_LOG_FUNC(fmt, arg1) __attribute__((format(printf, fmt, arg1)))
#else
# define LILV_LOG_FUNC(fmt, arg1)
#endif
/** Control port value set from the command line */
typedef struct Param {
const char* sym; ///< Port symbol
float value; ///< Control value
} Param;
/** Port type (only float ports are supported) */
typedef enum { TYPE_CONTROL, TYPE_AUDIO } PortType;
/** Runtime port information */
typedef struct {
const LilvPort* lilv_port; ///< Port description
PortType type; ///< Datatype
uint32_t index; ///< Port index
float value; ///< Control value (if applicable)
bool is_input; ///< True iff an input port
bool optional; ///< True iff connection optional
} Port;
/** Application state */
typedef struct {
LilvWorld* world;
const LilvPlugin* plugin;
LilvInstance* instance;
const char* in_path;
const char* out_path;
SNDFILE* in_file;
SNDFILE* out_file;
unsigned n_params;
Param* params;
unsigned n_ports;
unsigned n_audio_in;
unsigned n_audio_out;
Port* ports;
} LV2Apply;
static int
fatal(LV2Apply* self, int status, const char* fmt, ...);
/** Open a sound file with error handling. */
static SNDFILE*
sopen(LV2Apply* self, const char* path, int mode, SF_INFO* fmt)
{
SNDFILE* file = sf_open(path, mode, fmt);
const int st = sf_error(file);
if (st) {
fatal(self, 1, "Failed to open %s (%s)\n", path, sf_error_number(st));
return NULL;
}
return file;
}
/** Close a sound file with error handling. */
static void
sclose(const char* path, SNDFILE* file)
{
int st = 0;
if (file && (st = sf_close(file))) {
fprintf(stderr, "Failed to close %s (%s)\n", path, sf_error_number(st));
}
}
/**
Read a single frame from a file into an interleaved buffer.
If more channels are required than are available in the file, the remaining
channels are distributed in a round-robin fashion (LRLRL).
*/
static bool
sread(SNDFILE* file, unsigned file_chans, float* buf, unsigned buf_chans)
{
const sf_count_t n_read = sf_readf_float(file, buf, 1);
for (unsigned i = file_chans - 1; i < buf_chans; ++i) {
buf[i] = buf[i % file_chans];
}
return n_read == 1;
}
/** Clean up all resources. */
static int
cleanup(int status, LV2Apply* self)
{
sclose(self->in_path, self->in_file);
sclose(self->out_path, self->out_file);
lilv_instance_free(self->instance);
lilv_world_free(self->world);
free(self->ports);
free(self->params);
return status;
}
/** Print a fatal error and clean up for exit. */
LILV_LOG_FUNC(3, 4) static int
fatal(LV2Apply* self, int status, const char* fmt, ...)
{
va_list args;
va_start(args, fmt);
fprintf(stderr, "error: ");
vfprintf(stderr, fmt, args);
va_end(args);
return self ? cleanup(status, self) : status;
}
/**
Create port structures from data (via create_port()) for all ports.
*/
static int
create_ports(LV2Apply* self)
{
LilvWorld* world = self->world;
const uint32_t n_ports = lilv_plugin_get_num_ports(self->plugin);
self->n_ports = n_ports;
self->ports = (Port*)calloc(self->n_ports, sizeof(Port));
/* Get default values for all ports */
float* values = (float*)calloc(n_ports, sizeof(float));
lilv_plugin_get_port_ranges_float(self->plugin, NULL, NULL, values);
LilvNode* lv2_InputPort = lilv_new_uri(world, LV2_CORE__InputPort);
LilvNode* lv2_OutputPort = lilv_new_uri(world, LV2_CORE__OutputPort);
LilvNode* lv2_AudioPort = lilv_new_uri(world, LV2_CORE__AudioPort);
LilvNode* lv2_ControlPort = lilv_new_uri(world, LV2_CORE__ControlPort);
LilvNode* lv2_connectionOptional =
lilv_new_uri(world, LV2_CORE__connectionOptional);
for (uint32_t i = 0; i < n_ports; ++i) {
Port* port = &self->ports[i];
const LilvPort* lport = lilv_plugin_get_port_by_index(self->plugin, i);
port->lilv_port = lport;
port->index = i;
port->value = isnan(values[i]) ? 0.0f : values[i];
port->optional =
lilv_port_has_property(self->plugin, lport, lv2_connectionOptional);
/* Check if port is an input or output */
if (lilv_port_is_a(self->plugin, lport, lv2_InputPort)) {
port->is_input = true;
} else if (!lilv_port_is_a(self->plugin, lport, lv2_OutputPort) &&
!port->optional) {
return fatal(self, 1, "Port %u is neither input nor output\n", i);
}
/* Check if port is an audio or control port */
if (lilv_port_is_a(self->plugin, lport, lv2_ControlPort)) {
port->type = TYPE_CONTROL;
} else if (lilv_port_is_a(self->plugin, lport, lv2_AudioPort)) {
port->type = TYPE_AUDIO;
if (port->is_input) {
++self->n_audio_in;
} else {
++self->n_audio_out;
}
} else if (!port->optional) {
return fatal(self, 1, "Port %u has unsupported type\n", i);
}
}
lilv_node_free(lv2_connectionOptional);
lilv_node_free(lv2_ControlPort);
lilv_node_free(lv2_AudioPort);
lilv_node_free(lv2_OutputPort);
lilv_node_free(lv2_InputPort);
free(values);
return 0;
}
static void
print_version(void)
{
printf("lv2apply (lilv) " LILV_VERSION "\n");
}
static int
print_usage(const char* const name, const int status)
{
FILE* const out = status ? stderr : stdout;
fprintf(out, "Usage: %s [OPTION]... PLUGIN_URI\n", name);
fprintf(out,
"Apply an LV2 plugin to an audio file.\n\n"
" -V, --version Print version information and exit\n"
" -c, --control SYMBOL VALUE Control value\n"
" -h, --help Print this help and exit\n"
" -i IN_FILE Input file\n"
" -o OUT_FILE Output file\n");
return status;
}
static float*
alloc_audio_buffer(size_t n_channels)
{
return (float*)calloc(n_channels ? n_channels : 1, sizeof(float));
}
int
main(int argc, char** argv)
{
LV2Apply self = {
NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, NULL};
/* Parse command line arguments */
const char* plugin_uri = NULL;
for (int i = 1; i < argc; ++i) {
if (!strcmp(argv[i], "-V") || !strcmp(argv[i], "--version")) {
free(self.params);
print_version();
return 0;
}
if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) {
free(self.params);
return print_usage(argv[0], 0);
}
if (!strcmp(argv[i], "-i")) {
self.in_path = argv[++i];
} else if (!strcmp(argv[i], "-o")) {
self.out_path = argv[++i];
} else if (!strcmp(argv[i], "-c") || !strcmp(argv[i], "--control")) {
if (argc < i + 3) {
return fatal(&self, 1, "Missing argument for -c\n");
}
self.params =
(Param*)realloc(self.params, ++self.n_params * sizeof(Param));
self.params[self.n_params - 1].sym = argv[++i];
self.params[self.n_params - 1].value = strtof(argv[++i], NULL);
} else if (argv[i][0] != '-' && (i == argc - 1)) {
plugin_uri = argv[i];
} else {
free(self.params);
return print_usage(argv[0], 1);
}
}
/* Check that required arguments are given */
if (!self.in_path || !self.out_path || !plugin_uri) {
free(self.params);
return print_usage(argv[0], 1);
}
/* Create world and plugin URI */
self.world = lilv_world_new();
LilvNode* uri = lilv_new_uri(self.world, plugin_uri);
if (!uri) {
return fatal(&self, 2, "Invalid plugin URI <%s>\n", plugin_uri);
}
/* Discover world */
lilv_world_set_option(self.world, LILV_OPTION_OBJECT_INDEX, NULL);
lilv_world_load_all(self.world);
/* Get plugin */
const LilvPlugins* plugins = lilv_world_get_all_plugins(self.world);
const LilvPlugin* plugin = lilv_plugins_get_by_uri(plugins, uri);
lilv_node_free(uri);
if (!(self.plugin = plugin)) {
return fatal(&self, 3, "Plugin <%s> not found\n", plugin_uri);
}
/* Open input file */
SF_INFO in_fmt = {0, 0, 0, 0, 0, 0};
if (!(self.in_file = sopen(&self, self.in_path, SFM_READ, &in_fmt))) {
return 4;
}
/* Create port structures */
if (create_ports(&self)) {
return 5;
}
if (self.n_audio_in == 0 ||
(in_fmt.channels != (int)self.n_audio_in && in_fmt.channels != 1)) {
return fatal(&self,
6,
"Unable to map %d inputs to %u ports\n",
in_fmt.channels,
self.n_audio_in);
}
/* Set control values */
for (unsigned i = 0; i < self.n_params; ++i) {
const Param* param = &self.params[i];
LilvNode* sym = lilv_new_string(self.world, param->sym);
const LilvPort* port = lilv_plugin_get_port_by_symbol(plugin, sym);
lilv_node_free(sym);
if (!port) {
return fatal(&self, 7, "Unknown port `%s'\n", param->sym);
}
self.ports[lilv_port_get_index(plugin, port)].value = param->value;
}
/* Open output file */
SF_INFO out_fmt = in_fmt;
out_fmt.channels = self.n_audio_out;
if (!(self.out_file = sopen(&self, self.out_path, SFM_WRITE, &out_fmt))) {
free(self.ports);
return 8;
}
/* Instantiate plugin and connect ports */
const uint32_t n_ports = lilv_plugin_get_num_ports(plugin);
float* const in_buf = alloc_audio_buffer(self.n_audio_in);
float* const out_buf = alloc_audio_buffer(self.n_audio_out);
self.instance = lilv_plugin_instantiate(self.plugin, in_fmt.samplerate, NULL);
for (uint32_t p = 0, i = 0, o = 0; p < n_ports; ++p) {
if (self.ports[p].type == TYPE_CONTROL) {
lilv_instance_connect_port(self.instance, p, &self.ports[p].value);
} else if (self.ports[p].type == TYPE_AUDIO) {
if (self.ports[p].is_input) {
lilv_instance_connect_port(self.instance, p, in_buf + i++);
} else {
lilv_instance_connect_port(self.instance, p, out_buf + o++);
}
} else {
lilv_instance_connect_port(self.instance, p, NULL);
}
}
/* Ports are now connected to buffers in interleaved format, so we can run
a single frame at a time and avoid having to interleave buffers to
read/write from/to sndfile. */
lilv_instance_activate(self.instance);
int st = 0;
while (sread(self.in_file, in_fmt.channels, in_buf, self.n_audio_in)) {
lilv_instance_run(self.instance, 1);
if (sf_writef_float(self.out_file, out_buf, 1) != 1) {
st = fatal(&self, 9, "Failed to write to output file\n");
}
}
lilv_instance_deactivate(self.instance);
free(out_buf);
free(in_buf);
return st ? st : cleanup(0, &self);
}
|