X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fbutler.h;h=cd3891754be508c51603b8b343e3069a3a95481a;hb=c2a17a87868eba87072fc369102b2b3cd8905e5a;hp=49a57a826e4acdcad84c1568f5c3e059d7f00657;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/lib/butler.h b/src/lib/butler.h index 49a57a826..cd3891754 100644 --- a/src/lib/butler.h +++ b/src/lib/butler.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2016-2017 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,20 +18,24 @@ */ -#include "video_ring_buffers.h" -#include "audio_ring_buffers.h" -#include "text_ring_buffers.h" + #include "audio_mapping.h" +#include "audio_ring_buffers.h" +#include "change_signaller.h" #include "exception_store.h" +#include "text_ring_buffers.h" +#include "video_ring_buffers.h" +#include +#include #include #include -#include -#include + class Player; class PlayerVideo; -class Butler : public ExceptionStore, public boost::noncopyable + +class Butler : public ExceptionStore { public: Butler ( @@ -39,14 +43,18 @@ public: std::shared_ptr player, AudioMapping map, int audio_channels, - boost::function pixel_format, + std::function pixel_format, VideoRange video_range, - bool aligned, - bool fast + Image::Alignment alignment, + bool fast, + bool prepare_only_proxy ); ~Butler (); + Butler (Butler const&) = delete; + Butler& operator= (Butler const&) = delete; + void seek (dcpomatic::DCPTime position, bool accurate); class Error { @@ -115,11 +123,19 @@ private: bool _disable_audio; - boost::function _pixel_format; + std::function _pixel_format; VideoRange _video_range; - bool _aligned; + Image::Alignment _alignment; bool _fast; + /** true to ask PlayerVideo::prepare to only prepare the ImageProxy and not also + * the final image. We want to do this when the viewer is intending to call + * PlayerVideo::raw_image() and do the things in PlayerVideo::make_imgae() itself: + * this is the case for the GLVideoView which can do scale, pixfmt conversion etc. + * in the shader. + */ + bool _prepare_only_proxy = false; + /** If we are waiting to be refilled following a seek, this is the time we were seeking to. */