diff --git a/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C b/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C index 9c72021..f104f5c 100644 --- a/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C +++ b/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C @@ -78,16 +78,6 @@ LADSPAInfo::PrintInfo(void) << m_Libraries[p->LibraryIndex].Basename << ": " << p->Index << endl; } - cout << endl; - cout << " RDF paths:" << endl; - for (vector::iterator p = m_RDFPaths.begin(); p != m_RDFPaths.end(); p++) { - cout << " " << *p << endl; - } - cout << endl; - cout << " RDF files:" << endl; - for (vector::iterator f = m_RDFFiles.begin(); f != m_RDFFiles.end(); f++) { - cout << " " << m_RDFPaths[f->RDFPathIndex] << f->Basename << endl; - } } void @@ -308,9 +298,6 @@ LADSPAInfo::CleanUp(void) m_Libraries.clear(); m_Paths.clear(); - m_RDFFiles.clear(); - m_RDFPaths.clear(); - lrdf_cleanup(); m_OrderedPluginList.clear(); diff --git a/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h b/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h index f11241c..b4fe9af 100644 --- a/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h +++ b/SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h @@ -119,12 +119,6 @@ private: const LADSPA_Descriptor *Descriptor; // Descriptor, NULL }; - struct RDFFileInfo - { - unsigned long RDFPathIndex; // Index of path in m_RDFPaths - std::string Basename; // Filename - }; - typedef std::map > IDMap; @@ -149,9 +143,6 @@ private: std::vector m_Libraries; std::vector m_Plugins; - std::vector m_RDFPaths; - std::vector m_RDFFiles; - IDMap m_IDLookup; StringMap m_FilenameLookup;