diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-20 00:10:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-20 00:43:03 +0200 |
| commit | fa5f3a8bf77209da27acc33cf144e2e4500a2600 (patch) | |
| tree | 5632e51e273ad3fd8f9eefecc9241c87cf245d4e /src/lib/analyse_audio_job.h | |
| parent | 6e003ef110717dd3e4ecdb009d33671f7834e024 (diff) | |
Add LEQ(m) when analysing audio (#1382).v2.15.52
Diffstat (limited to 'src/lib/analyse_audio_job.h')
| -rw-r--r-- | src/lib/analyse_audio_job.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/analyse_audio_job.h b/src/lib/analyse_audio_job.h index 5d6c091bc..f7cc3e256 100644 --- a/src/lib/analyse_audio_job.h +++ b/src/lib/analyse_audio_job.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -26,6 +26,8 @@ #include "audio_point.h" #include "types.h" #include "dcpomatic_time.h" +#include <leqm_nrt.h> +#include <boost/scoped_ptr.hpp> class AudioBuffers; class AudioAnalysis; @@ -76,5 +78,7 @@ private: boost::shared_ptr<AudioFilterGraph> _ebur128; std::vector<Filter const *> _filters; + boost::scoped_ptr<leqm_nrt::Calculator> _leqm; + static const int _num_points; }; |
