Mark .exr as a valid image file.
[dcpomatic.git] / src / lib / video_decoder.cc
index 8a8a457476e2cacd5056189366bed0c888ffbaf1..b9ead52c8381680d2a8e97129a8d85c9d5b2f270 100644 (file)
@@ -59,10 +59,11 @@ VideoDecoder::emit (shared_ptr<const ImageProxy> image, Frame frame)
                return;
        }
 
-       /* Work out what we are going to emit next */
+       optional<bool> taken;
+
        switch (_content->video->frame_type ()) {
        case VIDEO_FRAME_TYPE_2D:
-               Data (ContentVideo (image, VideoFrame (frame, EYES_BOTH), PART_WHOLE));
+               taken = Data (ContentVideo (image, frame, EYES_BOTH, PART_WHOLE));
                break;
        case VIDEO_FRAME_TYPE_3D:
        {
@@ -70,30 +71,40 @@ VideoDecoder::emit (shared_ptr<const ImageProxy> image, Frame frame)
                   frame this one is.
                */
                bool const same = (_last_emitted && _last_emitted.get() == frame);
-               Data (ContentVideo (image, VideoFrame (frame, same ? EYES_RIGHT : EYES_LEFT), PART_WHOLE));
+               taken = Data (ContentVideo (image, frame, same ? EYES_RIGHT : EYES_LEFT, PART_WHOLE));
                _last_emitted = frame;
                break;
        }
        case VIDEO_FRAME_TYPE_3D_ALTERNATE:
-               Data (ContentVideo (image, VideoFrame (frame / 2, (frame % 2) ? EYES_RIGHT : EYES_LEFT), PART_WHOLE));
+               taken = Data (ContentVideo (image, frame / 2, (frame % 2) ? EYES_RIGHT : EYES_LEFT, PART_WHOLE));
+               frame /= 2;
                break;
        case VIDEO_FRAME_TYPE_3D_LEFT_RIGHT:
-               Data (ContentVideo (image, VideoFrame (frame, EYES_LEFT), PART_LEFT_HALF));
-               Data (ContentVideo (image, VideoFrame (frame, EYES_RIGHT), PART_RIGHT_HALF));
+               taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_LEFT_HALF));
+               taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_RIGHT_HALF));
                break;
        case VIDEO_FRAME_TYPE_3D_TOP_BOTTOM:
-               Data (ContentVideo (image, VideoFrame (frame, EYES_LEFT), PART_TOP_HALF));
-               Data (ContentVideo (image, VideoFrame (frame, EYES_RIGHT), PART_BOTTOM_HALF));
+               taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_TOP_HALF));
+               taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_BOTTOM_HALF));
                break;
        case VIDEO_FRAME_TYPE_3D_LEFT:
-               Data (ContentVideo (image, VideoFrame (frame, EYES_LEFT), PART_WHOLE));
+               taken = Data (ContentVideo (image, frame, EYES_LEFT, PART_WHOLE));
                break;
        case VIDEO_FRAME_TYPE_3D_RIGHT:
-               Data (ContentVideo (image, VideoFrame (frame, EYES_RIGHT), PART_WHOLE));
+               taken = Data (ContentVideo (image, frame, EYES_RIGHT, PART_WHOLE));
                break;
        default:
                DCPOMATIC_ASSERT (false);
        }
 
-       _position = ContentTime::from_frames (frame, _content->active_video_frame_rate ());
+       if (taken.get_value_or(false)) {
+               _position = ContentTime::from_frames (frame, _content->active_video_frame_rate ());
+       }
+}
+
+void
+VideoDecoder::seek ()
+{
+       _position = ContentTime();
+       _last_emitted.reset ();
 }