Oops in previous.
[dcpomatic.git] / src / lib / j2k_wav_encoder.h
index 87068ad3df05c4e1592f2e352f0ee4b11b05a1d4..f3340ba7260230aa67a756998a34c991cad760fe 100644 (file)
@@ -39,6 +39,7 @@ class DCPVideoFrame;
 class Image;
 class Log;
 class Subtitle;
+class AudioBuffers;
 
 /** @class J2KWAVEncoder
  *  @brief An encoder which writes JPEG2000 and WAV files.
@@ -46,17 +47,18 @@ class Subtitle;
 class J2KWAVEncoder : public Encoder
 {
 public:
-       J2KWAVEncoder (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Options>, Log *);
+       J2KWAVEncoder (boost::shared_ptr<const Film>, boost::shared_ptr<const Options>);
        ~J2KWAVEncoder ();
 
-       void process_begin (int64_t audio_channel_layout, AVSampleFormat audio_sample_format);
-       void process_video (boost::shared_ptr<Image>, int, boost::shared_ptr<Subtitle>);
-       void process_audio (uint8_t *, int);
+       void process_begin ();
        void process_end ();
 
 private:
 
-       void write_audio (uint8_t* data, int size);
+       void do_process_video (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>);
+       void do_process_audio (boost::shared_ptr<AudioBuffers>);
+       
+       void write_audio (boost::shared_ptr<const AudioBuffers> audio);
        void encoder_thread (ServerDescription *);
        void close_sound_files ();
        void terminate_worker_threads ();
@@ -66,8 +68,7 @@ private:
 #endif 
 
        std::vector<SNDFILE*> _sound_files;
-       int _deinterleave_buffer_size;
-       uint8_t* _deinterleave_buffer;
+       int64_t _audio_frames_written;
 
        bool _process_end;
        std::list<boost::shared_ptr<DCPVideoFrame> > _queue;