Make batch converter basically work.
[dcpomatic.git] / src / lib / video_decoder.cc
index 9c0d2bbe3a610e44d51e6cf608454bd20f53e25e..16a076698eff8c652061a693dc95960f38e0cf9e 100644 (file)
@@ -45,14 +45,14 @@ VideoDecoder::VideoDecoder (shared_ptr<Film> f, DecodeOptions o)
  *  @param t Time of the frame within the source, in seconds.
  */
 void
-VideoDecoder::emit_video (shared_ptr<Image> image, double t)
+VideoDecoder::emit_video (shared_ptr<Image> image, bool same, double t)
 {
        shared_ptr<Subtitle> sub;
        if (_timed_subtitle && _timed_subtitle->displayed_at (t)) {
                sub = _timed_subtitle->subtitle ();
        }
 
-       Video (image, false, sub, t);
+       Video (image, same, sub, t);
        ++_video_frame;
        
        _last_source_time = t;