X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fstereo_picture_frame.h;h=5be764fe6ccc0b9f6d7f2f5e1a97f6f30468d297;hb=d97e1600057d796c4163cecf28f9f04a6ea6402b;hp=878f6ab4c40e21858357cadf1a13f10e3ff06502;hpb=6e72e1d36f23a4236c4677f22792a6a4590943a3;p=libdcp.git diff --git a/src/stereo_picture_frame.h b/src/stereo_picture_frame.h index 878f6ab4..5be764fe 100644 --- a/src/stereo_picture_frame.h +++ b/src/stereo_picture_frame.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2013 Carl Hetherington + Copyright (C) 2012-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,33 +17,39 @@ */ -#include -#include -#include #include "types.h" +#include +#include +#include +#include +#include namespace ASDCP { namespace JP2K { struct SFrameBuffer; } - class AESDecContext; } -namespace libdcp { +namespace dcp { -class ARGBFrame; +class OpenJPEGImage; -/** A single frame of a 3D (stereoscopic) picture asset */ -class StereoPictureFrame +/** A single frame of a 3D (stereoscopic) picture asset */ +class StereoPictureFrame : public boost::noncopyable { public: - StereoPictureFrame (boost::filesystem::path mxf_path, int n); + StereoPictureFrame (boost::filesystem::path path, int n); + StereoPictureFrame (); ~StereoPictureFrame (); - boost::shared_ptr argb_frame (Eye eye, int reduce = 0, float srgb_gamma = 2.4) const; + boost::shared_ptr xyz_image (Eye eye, int reduce = 0) const; + uint8_t const * left_j2k_data () const; + uint8_t* left_j2k_data (); int left_j2k_size () const; + uint8_t const * right_j2k_data () const; + uint8_t* right_j2k_data (); int right_j2k_size () const; private: