diff options
Diffstat (limited to 'src/lib/dcp_video.h')
| -rw-r--r-- | src/lib/dcp_video.h | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index 3bd516ccd..2508988fd 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -48,23 +48,35 @@ public: DCPVideo (DCPVideo const&) = default; DCPVideo& operator= (DCPVideo const&) = default; - dcp::ArrayData encode_locally () const; - dcp::ArrayData encode_remotely (EncodeServerDescription, int timeout = 30) const; + std::shared_ptr<const PlayerVideo> frame () const { + return _frame; + } int index () const { return _index; } + int frames_per_second () const { + return _frames_per_second; + } + + int j2k_bandwidth () const { + return _j2k_bandwidth; + } + + Resolution resolution () const { + return _resolution; + } + Eyes eyes () const; bool same (std::shared_ptr<const DCPVideo> other) const; + void add_metadata (xmlpp::Element *) const; + static std::shared_ptr<dcp::OpenJPEGImage> convert_to_xyz (std::shared_ptr<const PlayerVideo> frame, dcp::NoteHandler note); private: - - void add_metadata (xmlpp::Element *) const; - std::shared_ptr<const PlayerVideo> _frame; int _index; ///< frame index within the DCP's intrinsic duration int _frames_per_second; ///< Frames per second that we will use for the DCP |
