Browse Source

Don't need path info - lrdf takes care of all this

master
waxfrenzy 23 years ago
parent
commit
0a9c406a71
2 changed files with 0 additions and 22 deletions
  1. +0
    -13
      SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C
  2. +0
    -9
      SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h

+ 0
- 13
SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.C View File

@@ -78,16 +78,6 @@ LADSPAInfo::PrintInfo(void)
<< m_Libraries[p->LibraryIndex].Basename
<< ": " << p->Index << endl;
}
cout << endl;
cout << " RDF paths:" << endl;
for (vector<string>::iterator p = m_RDFPaths.begin(); p != m_RDFPaths.end(); p++) {
cout << " " << *p << endl;
}
cout << endl;
cout << " RDF files:" << endl;
for (vector<RDFFileInfo>::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();


+ 0
- 9
SpiralSound/Plugins/LADSPAPlugin/LADSPAInfo.h View File

@@ -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<unsigned long,
unsigned long,
std::less<unsigned long> > IDMap;
@@ -149,9 +143,6 @@ private:
std::vector<LibraryInfo> m_Libraries;
std::vector<PluginInfo> m_Plugins;

std::vector<std::string> m_RDFPaths;
std::vector<RDFFileInfo> m_RDFFiles;

IDMap m_IDLookup;
StringMap m_FilenameLookup;



Loading…
Cancel
Save