Various fixes to push audio vaguely in the right direction.
[dcpomatic.git] / src / lib / video_mxf_decoder.cc
index 90a58a16ef45907a803c4def9f1ff7ec57611b40..216721375fac0f832bf06c17dc5c117f890e50d1 100644 (file)
@@ -67,7 +67,7 @@ VideoMXFDecoder::VideoMXFDecoder (shared_ptr<const VideoMXFContent> content, sha
 }
 
 bool
-VideoMXFDecoder::pass (PassReason, bool)
+VideoMXFDecoder::pass ()
 {
        double const vfr = _content->active_video_frame_rate ();
        int64_t const frame = _next.frames_round (vfr);
@@ -77,19 +77,18 @@ VideoMXFDecoder::pass (PassReason, bool)
        }
 
        if (_mono_reader) {
-               video->give (
+               video->emit (
                        shared_ptr<ImageProxy> (new J2KImageProxy (_mono_reader->get_frame(frame), _size, AV_PIX_FMT_XYZ12LE)), frame
                        );
        } else {
-               video->give (
+               video->emit (
                        shared_ptr<ImageProxy> (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT, AV_PIX_FMT_XYZ12LE)), frame
                        );
-               video->give (
+               video->emit (
                        shared_ptr<ImageProxy> (new J2KImageProxy (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT, AV_PIX_FMT_XYZ12LE)), frame
                        );
        }
 
-       video->set_position (_next);
        _next += ContentTime::from_frames (1, vfr);
        return false;
 }
@@ -97,6 +96,6 @@ VideoMXFDecoder::pass (PassReason, bool)
 void
 VideoMXFDecoder::seek (ContentTime t, bool accurate)
 {
-       video->seek (t, accurate);
+       Decoder::seek (t, accurate);
        _next = t;
 }