diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-10-13 23:47:33 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-10-13 23:47:33 +0200 |
| commit | a9dde34b8772ef8b985af067e2ff709be4e3cab6 (patch) | |
| tree | ec6dad9b92f1e58359b139b35dd349cfdc7b1094 /src/lib/audio_processor.h | |
| parent | 7c73ec405fdb55bd78d82d764999b5af6d81e973 (diff) | |
Hide the upmixers unless an "advanced" configuration option is ticked.v2.15.22
The upmixers are not of sufficient quality to always be an improvement,
and anecdotally it seems that some users see them and hope one will
be a silver bullet.
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 |
