diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-10-14 11:24:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-10-14 11:24:48 +0200 |
| commit | 96f7dd41a2c8627bc1ea0d24d84142eb04b4ffef (patch) | |
| tree | 27c4f6a5355a0496e960e1769632d00c41ad4816 /src/lib/audio_processor.h | |
| parent | 95bd2d068f67f7c0e611c720c95bfd6781329d86 (diff) | |
| parent | a9dde34b8772ef8b985af067e2ff709be4e3cab6 (diff) | |
Merge branch 'v2.15.x' of ssh://localhost:2222/home/carl/git/dcpomatic into v2.15.x
Diffstat (limited to 'src/lib/audio_processor.h')
| -rw-r--r-- | src/lib/audio_processor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/audio_processor.h b/src/lib/audio_processor.h index e10df254c..78a3efb58 100644 --- a/src/lib/audio_processor.h +++ b/src/lib/audio_processor.h @@ -61,11 +61,13 @@ public: virtual std::vector<std::string> input_names () const = 0; static std::list<AudioProcessor const *> all (); + static std::list<AudioProcessor const *> visible (); static void setup_audio_processors (); static AudioProcessor const * from_id (std::string); private: static std::list<AudioProcessor const *> _all; + static std::list<AudioProcessor const *> _non_experimental; }; #endif |
