AgsVst3Manager

AgsVst3Manager — Singleton pattern to organize VST3

Stability Level

Stable, unless otherwise indicated

Functions

Includes

#include <ags/plugin/ags_vst3_manager.h>

Description

The AgsVst3Manager loads/unloads VST3 plugins.

Functions

AGS_VST3_MANAGER_GET_OBJ_MUTEX()

#define AGS_VST3_MANAGER_GET_OBJ_MUTEX(obj) (&(((AgsVst3Manager *) obj)->obj_mutex))

ags_vst3_manager_get_default_path ()

gchar **
ags_vst3_manager_get_default_path ();

Get vst3 manager default plugin path.

Returns

the plugin default search path as a string vector.

[element-type utf8][array zero-terminated=1][transfer none]

Since: 3.10.2


ags_vst3_manager_set_default_path ()

void
ags_vst3_manager_set_default_path (gchar **default_path);

Set vst3 manager default plugin path.

Parameters

default_path

the string vector array to use as default path.

[element-type utf8][array zero-terminated=1][transfer full]

Since: 3.10.2


ags_vst3_manager_get_filenames ()

gchar **
ags_vst3_manager_get_filenames (AgsVst3Manager *vst3_manager);

Retrieve all filenames

Parameters

vst3_manager

the AgsVst3Manager

 

Returns

a NULL-terminated array of filenames.

[element-type utf8][array zero-terminated=1][transfer full]

Since: 3.10.2


ags_vst3_manager_find_vst3_plugin ()

AgsVst3Plugin *
ags_vst3_manager_find_vst3_plugin (AgsVst3Manager *vst3_manager,
                                   gchar *filename,
                                   gchar *effect);

Lookup filename in loaded plugins.

Parameters

vst3_manager

the AgsVst3Manager

 

filename

the filename of the plugin

 

effect

the effect's name

 

Returns

the matching AgsVst3Plugin.

[transfer none]

Since: 3.10.2


ags_vst3_manager_find_vst3_plugin_with_fallback ()

AgsVst3Plugin *
ags_vst3_manager_find_vst3_plugin_with_fallback
                               (AgsVst3Manager *vst3_manager,
                                gchar *filename,
                                gchar *effect);

Lookup filename in loaded plugins.

Parameters

vst3_manager

the AgsVst3Manager

 

filename

the filename of the plugin

 

effect

the effect's name

 

Returns

the matching AgsVst3Plugin.

[transfer none]

Since: 3.5.10


ags_vst3_manager_load_blacklist ()

void
ags_vst3_manager_load_blacklist (AgsVst3Manager *vst3_manager,
                                 gchar *blacklist_filename);

Load blacklisted plugin filenames.

Parameters

vst3_manager

the AgsVst3Manager

 

blacklist_filename

the filename as string

 

Since: 3.10.2


ags_vst3_manager_load_file ()

void
ags_vst3_manager_load_file (AgsVst3Manager *vst3_manager,
                            gchar *vst3_path,
                            gchar *filename);

Load filename specified plugin.

Parameters

vst3_manager

the AgsVst3Manager

 

vst3_path

the vst3 path

 

filename

the filename of the plugin

 

Since: 3.10.2


ags_vst3_manager_load_default_directory ()

void
ags_vst3_manager_load_default_directory
                               (AgsVst3Manager *vst3_manager);

Loads all available plugins.

Parameters

vst3_manager

the AgsVst3Manager

 

Since: 3.10.2


ags_vst3_manager_get_vst3_plugin ()

GList *
ags_vst3_manager_get_vst3_plugin (AgsVst3Manager *vst3_manager);

Get vst3 plugin.

Parameters

vst3_manager

the AgsVst3Manager

 

Returns

the GList containing AgsVst3Plugin.

[transfer full]

Since: 3.5.15


ags_vst3_manager_get_instance ()

AgsVst3Manager *
ags_vst3_manager_get_instance ();

Get instance.

Returns

the AgsVst3Manager.

[transfer none]

Since: 3.10.2


ags_vst3_manager_new ()

AgsVst3Manager *
ags_vst3_manager_new ();

Create a new instance of AgsVst3Manager

Returns

the new AgsVst3Manager

Since: 3.10.2