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
|
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*****************************************************************************
*
* This file is part of zynjacku
*
* Copyright (C) 2008,2009 Nedko Arnaudov <nedko@arnaudov.name>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License
*
* This program 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****************************************************************************/
#ifndef LV2_H__F5AF3921_19C9_47C0_95B6_AF05FCD9C767__INCLUDED
#define LV2_H__F5AF3921_19C9_47C0_95B6_AF05FCD9C767__INCLUDED
typedef struct { int _unused; } * zynjacku_lv2_handle;
struct zynjacku_port;
char *
zynjacku_lv2_dman_get(
const char * dlpath);
zynjacku_lv2_handle
zynjacku_lv2_load(
const char * uri,
const char * dlpath,
const char * bundle_path,
double sample_rate,
const LV2_Feature * const * host_features);
void
zynjacku_lv2_unload(
zynjacku_lv2_handle lv2handle);
void
zynjacku_lv2_connect_port(
zynjacku_lv2_handle lv2handle,
struct zynjacku_port *port,
void *data_location);
void
zynjacku_lv2_run(
zynjacku_lv2_handle lv2handle,
uint32_t sample_count);
void
zynjacku_lv2_activate(
zynjacku_lv2_handle lv2handle);
void
zynjacku_lv2_deactivate(
zynjacku_lv2_handle lv2handle);
const LV2_Descriptor *
zynjacku_lv2_get_descriptor(
zynjacku_lv2_handle lv2handle);
LV2_Handle
zynjacku_lv2_get_handle(
zynjacku_lv2_handle lv2handle);
void
zynjacku_lv2_message(
zynjacku_lv2_handle lv2handle,
const void *input_data,
void *output_data);
#endif /* #ifndef LV2_H__F5AF3921_19C9_47C0_95B6_AF05FCD9C767__INCLUDED */
|