summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/analyser.h
blob: aae16e443fa06c3f8960699bc8a54bdc1a462667 (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
#ifndef __ardour_analyser_h__
#define __ardour_analyser_h__

#include <glibmm/threads.h>
#include <boost/shared_ptr.hpp>

namespace ARDOUR {

class AudioFileSource;
class Source;
class TransientDetector;

class Analyser {

  public:
	Analyser();
	~Analyser ();

	static void init ();
	static void queue_source_for_analysis (boost::shared_ptr<Source>, bool force);
	static void work ();

  private:
	static Analyser* the_analyser;
        static Glib::Threads::Mutex analysis_queue_lock;
        static Glib::Threads::Cond  SourcesToAnalyse;
	static std::list<boost::weak_ptr<Source> > analysis_queue;

	static void analyse_audio_file_source (boost::shared_ptr<AudioFileSource>);
};


}

#endif /* __ardour_analyser_h__ */