Subs successfully exported with thumbs.
[dcpomatic.git] / src / lib / j2k_still_encoder.h
index d4d68724e293138d8c0fde9b8ebb8d8e5688aba5..c48b9e69c9e1cbcdbad9f000be595b1cf5c449ac 100644 (file)
@@ -17,8 +17,8 @@
 
 */
 
-/** @file  src/j2k_wav_encoder.h
- *  @brief An encoder which writes JPEG2000 and WAV files.
+/** @file  src/j2k_still_encoder.h
+ *  @brief An encoder which writes JPEG2000 files for a single still source image.
  */
 
 #include <list>
@@ -36,8 +36,8 @@ class J2KStillEncoder : public Encoder
 public:
        J2KStillEncoder (boost::shared_ptr<const FilmState>, boost::shared_ptr<const Options>, Log *);
 
-       void process_begin () {}
-       void process_video (boost::shared_ptr<Image>, int);
+       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_end () {}
 };