Tidy up test film naming.
[dcpomatic.git] / src / lib / j2k_still_encoder.h
index 755c68877e8af1d19c16c1e4b895d39a410c54b3..928afe372fe8a7bf3443facd37f18db815487d8e 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 (int64_t audio_channel_layout, AVSampleFormat audio_sample_format) {}
-       void process_video (boost::shared_ptr<Image>, int);
-       void process_audio (uint8_t *, int) {}
+       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 () {}
 };