1 /* GStreamer 2 * Copyright (C) 1999 Erik Walthinsen <omega@cse.ogi.edu> 3 * 2001 Steve Baker <stevebaker_org@yahoo.co.uk> 4 * 2003 Andy Wingo <wingo at pobox.com> 5 * 2016 Thibault Saunier <thibault.saunier@collabora.com> 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Library General Public 9 * License as published by the Free Software Foundation; either 10 * version 2 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Library General Public License for more details. 16 * 17 * You should have received a copy of the GNU Library General Public 18 * License along with this library; if not, write to the 19 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 20 * Boston, MA 02110-1301, USA. 21 */ 22 23 #ifndef __GST_LV2_H__ 24 #define __GST_LV2_H__ 25 26 #include <lilv/lilv.h> 27 #include <gst/gst.h> 28 29 #include "gstlv2utils.h" 30 31 LilvWorld *world; 32 LilvNode *atom_class; 33 LilvNode *audio_class; 34 LilvNode *control_class; 35 LilvNode *cv_class; 36 LilvNode *event_class; 37 LilvNode *input_class; 38 LilvNode *output_class; 39 LilvNode *preset_class; 40 LilvNode *state_iface; 41 LilvNode *state_uri; 42 43 LilvNode *integer_prop; 44 LilvNode *toggled_prop; 45 LilvNode *designation_pred; 46 LilvNode *in_place_broken_pred; 47 LilvNode *optional_pred; 48 LilvNode *group_pred; 49 LilvNode *supports_event_pred; 50 LilvNode *label_pred; 51 52 LilvNode *center_role; 53 LilvNode *left_role; 54 LilvNode *right_role; 55 LilvNode *rear_center_role; 56 LilvNode *rear_left_role; 57 LilvNode *rear_right_role; 58 LilvNode *lfe_role; 59 LilvNode *center_left_role; 60 LilvNode *center_right_role; 61 LilvNode *side_left_role; 62 LilvNode *side_right_role; 63 64 GstStructure *lv2_meta_all; 65 66 void gst_lv2_filter_register_element (GstPlugin *plugin, 67 GstStructure * lv2_meta); 68 void gst_lv2_source_register_element (GstPlugin *plugin, 69 GstStructure * lv2_meta); 70 #endif /* __GST_LV2_H__ */ 71