allow user tweaking of everything that might have inherent latency; add GUI for track...
[ardour.git] / libs / ardour / plugin_manager.cc
index 5225b18fc49754eb2ff9239eabccaea8a9a76a56..02cba7dd9413b70f36477407d740b18899553ed8 100644 (file)
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
+#define __STDC_FORMAT_MACROS 1
+#include <stdint.h>
+
 #include <sys/types.h>
 #include <cstdio>
 #include <lrdf.h>
 #include <ardour/plugin_manager.h>
 #include <ardour/plugin.h>
 #include <ardour/ladspa_plugin.h>
+
+#ifdef VST_SUPPORT
 #include <ardour/vst_plugin.h>
-#include <ardour/audio_unit.h>
+#endif
 
 #include <pbd/error.h>
 #include <pbd/stl_delete.h>
@@ -81,7 +85,6 @@ PluginManager::PluginManager ()
        }
 
        refresh ();
-
        if (_manager == 0) {
                _manager = this;
        }
@@ -104,7 +107,7 @@ PluginManager::ladspa_refresh ()
        _ladspa_plugin_info.clear ();
 
        if (ladspa_path.length() == 0) {
-               ladspa_path = "/usr/local/lib/ladspa:/usr/lib/ladspa";
+               ladspa_path = "/usr/local/lib64/ladspa:/usr/local/lib/ladspa:/usr/lib64/ladspa:/usr/lib/ladspa:/Library/Audio/Plug-Ins/LADSPA";
        }
 
        ladspa_discover_from_path (ladspa_path);
@@ -250,18 +253,18 @@ PluginManager::ladspa_discover (string path)
                info->category = get_ladspa_category(descriptor->UniqueID);
                info->path = path;
                info->index = i;
-               info->n_inputs = 0;
-               info->n_outputs = 0;
-               info->type = PluginInfo::LADSPA;
+               info->n_inputs = ChanCount();
+               info->n_outputs = ChanCount();
+               info->type = ARDOUR::LADSPA;
                info->unique_id = descriptor->UniqueID;
                
                for (uint32_t n=0; n < descriptor->PortCount; ++n) {
                        if ( LADSPA_IS_PORT_AUDIO (descriptor->PortDescriptors[n]) ) {
                                if ( LADSPA_IS_PORT_INPUT (descriptor->PortDescriptors[n]) ) {
-                                       info->n_inputs++;
+                                       info->n_inputs.set_audio(info->n_inputs.n_audio() + 1);
                                }
                                else if ( LADSPA_IS_PORT_OUTPUT (descriptor->PortDescriptors[n]) ) {
-                                       info->n_outputs++;
+                                       info->n_outputs.set_audio(info->n_outputs.n_audio() + 1);
                                }
                        }
                }
@@ -275,46 +278,6 @@ PluginManager::ladspa_discover (string path)
        return 0;
 }
 
-PluginPtr
-ARDOUR::find_plugin(Session& session, string name, long unique_id, PluginInfo::Type type)
-{
-       PluginManager *mgr = PluginManager::the_manager();
-       PluginInfoList plugs;
-
-       switch (type) {
-       case PluginInfo::LADSPA:
-               plugs = mgr->ladspa_plugin_info();
-               break;
-
-#ifdef VST_SUPPORT
-       case PluginInfo::VST:
-               plugs = mgr->vst_plugin_info();
-               unique_id = 0; // VST plugins don't have a unique id.
-               break;
-#endif
-
-#ifdef HAVE_COREAUDIO
-       case PluginInfo::AudioUnit:
-               plugs = AUPluginInfo::discover ();
-               unique_id = 0; // Neither do AU.
-               break;
-#endif
-
-       default:
-               return PluginPtr ((Plugin *) 0);
-       }
-
-       PluginInfoList::iterator i;
-       for (i = plugs.begin(); i != plugs.end(); ++i) {
-               if ((name == "" || (*i)->name == name) &&
-                       (unique_id == 0 || (*i)->unique_id == unique_id)) {
-                               return (*i)->load (session);
-               }
-       }
-       
-       return PluginPtr ((Plugin*) 0);
-}
-
 string
 PluginManager::get_ladspa_category (uint32_t plugin_id)
 {
@@ -379,7 +342,7 @@ PluginManager::add_vst_directory (string path)
 static bool vst_filter (const string& str, void *arg)
 {
        /* Not a dotfile, has a prefix before a period, suffix is "dll" */
-       
+
        return str[0] != '.' && (str.length() > 4 && str.find (".dll") == (str.length() - 4));
 }
 
@@ -411,6 +374,7 @@ PluginManager::vst_discover (string path)
        FSTInfo* finfo;
 
        if ((finfo = fst_get_info (const_cast<char *> (path.c_str()))) == 0) {
+               warning << "Cannot get VST information from " << path << endmsg;
                return -1;
        }
 
@@ -420,7 +384,7 @@ PluginManager::vst_discover (string path)
                        << endl;
        }
        
-       PluginInfoPtr info(new PluginInfo);
+       PluginInfoPtr info(new VSTPluginInfo);
 
        /* what a goddam joke freeware VST is */
 
@@ -435,7 +399,7 @@ PluginManager::vst_discover (string path)
        info->index = 0;
        info->n_inputs = finfo->numInputs;
        info->n_outputs = finfo->numOutputs;
-       info->type = PluginInfo::VST;
+       info->type = ARDOUR::VST;
        
        _vst_plugin_info.push_back (info);
        fst_free_info (finfo);