diff options
Diffstat (limited to 'src/lib/analyse_audio_job.h')
| -rw-r--r-- | src/lib/analyse_audio_job.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/analyse_audio_job.h b/src/lib/analyse_audio_job.h index ec61c0d39..cc913e1f3 100644 --- a/src/lib/analyse_audio_job.h +++ b/src/lib/analyse_audio_job.h @@ -26,19 +26,19 @@ #include "types.h" class AudioBuffers; -class AudioContent; +class Playlist; /** @class AnalyseAudioJob - * @brief A job to analyse the audio of a piece of AudioContent and make a note of its + * @brief A job to analyse the audio of a playlist and make a note of its * broad peak and RMS levels. * - * After computing the peak and RMS levels over the length of the content, the job - * will write a file to Content::audio_analysis_path. + * After computing the peak and RMS levels the job will write a file + * to Playlist::audio_analysis_path. */ class AnalyseAudioJob : public Job { public: - AnalyseAudioJob (boost::shared_ptr<const Film>, boost::shared_ptr<AudioContent>); + AnalyseAudioJob (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist>); std::string name () const; std::string json_name () const; @@ -47,7 +47,7 @@ public: private: void analyse (boost::shared_ptr<const AudioBuffers>); - boost::weak_ptr<AudioContent> _content; + boost::shared_ptr<const Playlist> _playlist; int64_t _done; int64_t _samples_per_point; std::vector<AudioPoint> _current; |
