Tidy up test film naming.
[dcpomatic.git] / src / lib / j2k_wav_encoder.h
index 2c18a5730700acb69fad2bbf2aab4750ea791899..69d445b09c62cb73d85f47c6e32a1672363a686c 100644 (file)
@@ -50,14 +50,14 @@ public:
        J2KWAVEncoder (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Options>, Log *);
        ~J2KWAVEncoder ();
 
-       void process_begin (int64_t audio_channel_layout, AVSampleFormat audio_sample_format);
+       void process_begin (int64_t audio_channel_layout);
        void process_video (boost::shared_ptr<Image>, int, boost::shared_ptr<Subtitle>);
        void process_audio (boost::shared_ptr<const AudioBuffers>);
        void process_end ();
 
 private:
 
-       void write_audio (boost::shared_ptr<const AudioBuffers> audio) const;
+       void write_audio (boost::shared_ptr<const AudioBuffers> audio);
        void encoder_thread (ServerDescription *);
        void close_sound_files ();
        void terminate_worker_threads ();
@@ -67,6 +67,7 @@ private:
 #endif 
 
        std::vector<SNDFILE*> _sound_files;
+       int64_t _audio_frames_written;
 
        bool _process_end;
        std::list<boost::shared_ptr<DCPVideoFrame> > _queue;