summaryrefslogtreecommitdiff
path: root/ext/lv2/gstlv2.h
blob: 4a99605d4c7295d63f5488484cb9757850699e09 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
/* GStreamer
 * Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu>
 *               2001 Steve Baker <stevebaker_org@yahoo.co.uk>
 *               2003 Andy Wingo <wingo at pobox.com>
 *               2016 Thibault Saunier <thibault.saunier@collabora.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef __GST_LV2_H__
#define __GST_LV2_H__

#include <lilv/lilv.h>
#include <gst/gst.h>

#include "gstlv2utils.h"

G_GNUC_INTERNAL extern LilvWorld *gst_lv2_world_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_audio_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_control_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_cv_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_event_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_input_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_output_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_preset_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_state_iface_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_state_uri_node;

G_GNUC_INTERNAL extern LilvNode *gst_lv2_integer_prop_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_toggled_prop_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_designation_pred_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_in_place_broken_pred_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_optional_pred_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_group_pred_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_supports_event_pred_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_label_pred_node;

G_GNUC_INTERNAL extern LilvNode *gst_lv2_center_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_left_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_right_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_rear_center_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_rear_left_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_rear_right_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_lfe_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_center_left_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_center_right_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_side_left_role_node;
G_GNUC_INTERNAL extern LilvNode *gst_lv2_side_right_role_node;

G_GNUC_INTERNAL extern GstStructure *lv2_meta_all;

void gst_lv2_filter_register_element (GstPlugin *plugin,
                                      GstStructure * lv2_meta);
void gst_lv2_source_register_element (GstPlugin *plugin,
                                      GstStructure * lv2_meta);
#endif /* __GST_LV2_H__ */