Fix write_frame_info again.
[dcpomatic.git] / src / lib / analyse_audio_job.h
index ec61c0d3981a83ba246d7cd152be745d69d96001..234424bb38c567e1d71a6c96e61a1b299554d5ad 100644 (file)
 #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 film 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 Film::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,8 @@ 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;
@@ -59,4 +60,3 @@ private:
 
        static const int _num_points;
 };
-