summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/panner_manager.h
blob: 483691c944df808429c06eed3b985e7c8da72be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef __ardour_panner_manager_h__
#define __ardour_panner_manager_h__

#include <dlfcn.h>
#include "ardour/panner.h"
#include "ardour/session_handle.h"

namespace ARDOUR {

struct PannerInfo {
	PanPluginDescriptor descriptor;
	void* module;

	PannerInfo (PanPluginDescriptor& d, void* handle)
	: descriptor (d)
	, module (handle)
	{}

	~PannerInfo () {
		dlclose (module);
	}
};

class PannerManager : public ARDOUR::SessionHandlePtr
{
public:
	~PannerManager ();
	static PannerManager& instance ();

	void discover_panners ();
	std::list<PannerInfo*> panner_info;

	PannerInfo* select_panner (ChanCount in, ChanCount out);

private:
	PannerManager();
	static PannerManager* _instance;

	PannerInfo* get_descriptor (std::string path);
	int panner_discover (std::string path);
};

} // namespace

#endif /* __ardour_panner_manager_h__ */