Top |
#define | AGS_PORT_DESCRIPTOR() |
AgsPortDescriptor * | ags_port_descriptor_alloc () |
void | ags_port_descriptor_free () |
GList * | ags_base_plugin_find_filename () |
GList * | ags_base_plugin_find_effect () |
void | ags_base_plugin_apply_port_group_by_prefix () |
gpointer | ags_base_plugin_instantiate () |
void | ags_base_plugin_connect_port () |
void | ags_base_plugin_activate () |
void | ags_base_plugin_deactivate () |
void | ags_base_plugin_run () |
void | ags_base_plugin_load_plugin () |
AgsBasePlugin * | ags_base_plugin_new () |
gchar * | effect | Read / Write |
guint | effect-index | Read / Write |
gchar * | filename | Read / Write |
AgsBasePlugin * | ui-plugin | Read / Write |
void | activate | Run Last |
void | connect-port | Run Last |
void | deactivate | Run Last |
gpointer | instantiate | Run Last |
void | load-plugin | Run Last |
void | run | Run Last |
GObject ╰── AgsBasePlugin ├── AgsDssiPlugin ├── AgsLadspaPlugin ├── AgsLv2Plugin ╰── AgsLv2uiPlugin
AgsPortDescriptor * ags_port_descriptor_alloc ();
Alloc the AgsPortDescriptor
Since: 0.7.6
void
ags_port_descriptor_free (AgsPortDescriptor *port_descriptor
);
Free the AgsPortDescriptor
Since: 0.7.6
GList * ags_base_plugin_find_filename (GList *base_plugin
,gchar *filename
);
GList * ags_base_plugin_find_effect (GList *base_plugin
,gchar *filename
,gchar *effect
);
void
ags_base_plugin_apply_port_group_by_prefix
(AgsBasePlugin *base_plugin
);
gpointer ags_base_plugin_instantiate (AgsBasePlugin *base_plugin
,guint samplerate
);
Instantiate the plugin
Since: 0.7.6
void ags_base_plugin_connect_port (AgsBasePlugin *base_plugin
,gpointer plugin_handle
,guint port_index
,gpointer data_location
);
Connect a plugin instance.
base_plugin |
the AgsBasePlugin |
|
plugin_handle |
the plugin instance handle |
|
port_index |
the port's index to connect |
|
data_location |
the data location to connect |
Since: 0.7.6
void ags_base_plugin_activate (AgsBasePlugin *base_plugin
,gpointer plugin_handle
);
Activate a plugin instance
Since: 0.7.6
void ags_base_plugin_deactivate (AgsBasePlugin *base_plugin
,gpointer plugin_handle
);
Deactivat a plugin instance
Since: 0.7.6
void ags_base_plugin_run (AgsBasePlugin *base_plugin
,gpointer plugin_handle
,snd_seq_event_t *seq_event
,guint frame_count
);
Deactivat a plugin instance
base_plugin |
the AgsBasePlugin |
|
plugin_handle |
the plugin instance handle |
|
seq_event |
the alsa sequencer events |
|
frame_count |
the frame counts |
Since: 0.7.6
void
ags_base_plugin_load_plugin (AgsBasePlugin *base_plugin
);
Load the plugin
Since: 0.7.6
AgsBasePlugin * ags_base_plugin_new (gchar *filename
,gchar *effect
,guint effect_index
);
Creates an AgsBasePlugin
filename |
the plugin .so |
|
effect |
the effect's string representation |
|
effect_index |
the effect's index |
Since: 0.7.6
“effect”
property“effect” gchar *
The effect this plugin is assigned with.
Flags: Read / Write
Default value: NULL
Since: 0.7.6
“effect-index”
property“effect-index” guint
The effect-index this plugin is assigned with.
Flags: Read / Write
Default value: 0
Since: 0.7.6
“filename”
property“filename” gchar *
The filename this plugin is located in.
Flags: Read / Write
Default value: NULL
Since: 0.7.6
“ui-plugin”
property“ui-plugin” AgsBasePlugin *
The ui-plugin this plugin is assigned with.
Flags: Read / Write
Since: 0.7.6
“activate”
signalvoid user_function (AgsBasePlugin *base_plugin, gpointer arg1, gpointer user_data)
Flags: Run Last
“connect-port”
signalvoid user_function (AgsBasePlugin *base_plugin, gpointer arg1, guint arg2, gpointer arg3, gpointer user_data)
Flags: Run Last
“deactivate”
signalvoid user_function (AgsBasePlugin *base_plugin, gpointer arg1, gpointer user_data)
Flags: Run Last
“instantiate”
signalgpointer user_function (AgsBasePlugin *base_plugin, guint samplerate, gpointer user_data)
Flags: Run Last
“load-plugin”
signalvoid user_function (AgsBasePlugin *agsbaseplugin, gpointer user_data)
Flags: Run Last