diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-18 17:07:07 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-18 20:52:20 +0000 |
| commit | 419afb743ad2aaf1ea301356ac09f9a26ee15567 (patch) | |
| tree | a90a3776b0919871750c173c2bb753321ddf7282 /src/lib/analyse_audio_job.h | |
| parent | e07926b8b0d3d93c2b670aea4b49230170a3532b (diff) | |
Basic (untested) ebur128 (#368).
Diffstat (limited to 'src/lib/analyse_audio_job.h')
| -rw-r--r-- | src/lib/analyse_audio_job.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/analyse_audio_job.h b/src/lib/analyse_audio_job.h index d9b90ec66..65282b192 100644 --- a/src/lib/analyse_audio_job.h +++ b/src/lib/analyse_audio_job.h @@ -29,6 +29,8 @@ class AudioBuffers; class AudioAnalysis; class Playlist; class AudioPoint; +class AudioFilterGraph; +class Filter; /** @class AnalyseAudioJob * @brief A job to analyse the audio of a film and make a note of its @@ -60,10 +62,13 @@ private: int64_t _samples_per_point; AudioPoint* _current; - float _overall_peak; - Frame _overall_peak_frame; + float _sample_peak; + Frame _sample_peak_frame; boost::shared_ptr<AudioAnalysis> _analysis; + boost::shared_ptr<AudioFilterGraph> _ebur128; + std::vector<Filter const *> _filters; + static const int _num_points; }; |
