X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fstereo_picture_frame.cc;h=5a90e0a13a898952e2751da141c72fef05bc8615;hb=1caefd8541e12e7d205c3d5bb46f3ec84719baa0;hp=780ac3622e37bde8370693de9c2002ab3181b73e;hpb=04b4d9f08ee30eb4dc4e62cddc4b332c69d18ac0;p=libdcp.git diff --git a/src/stereo_picture_frame.cc b/src/stereo_picture_frame.cc index 780ac362..5a90e0a1 100644 --- a/src/stereo_picture_frame.cc +++ b/src/stereo_picture_frame.cc @@ -19,16 +19,15 @@ #include "stereo_picture_frame.h" #include "exceptions.h" -#include "argb_frame.h" #include "util.h" -#include "gamma_lut.h" #include "rgb_xyz.h" +#include "colour_conversion.h" #include "AS_DCP.h" #include "KM_fileio.h" +#include "compose.hpp" +#include "j2k.h" #include -#define DCI_GAMMA 2.6 - using std::string; using boost::shared_ptr; using namespace dcp; @@ -37,22 +36,27 @@ using namespace dcp; * @param mxf_path Path to the asset's MXF file. * @param n Frame within the asset, not taking EntryPoint into account. */ -StereoPictureFrame::StereoPictureFrame (boost::filesystem::path mxf_path, int n) +StereoPictureFrame::StereoPictureFrame (boost::filesystem::path path, int n) { ASDCP::JP2K::MXFSReader reader; - Kumu::Result_t r = reader.OpenRead (mxf_path.string().c_str()); + Kumu::Result_t r = reader.OpenRead (path.string().c_str()); if (ASDCP_FAILURE (r)) { - boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path, r)); + boost::throw_exception (FileError ("could not open MXF file for reading", path, r)); } /* XXX: unfortunate guesswork on this buffer size */ _buffer = new ASDCP::JP2K::SFrameBuffer (4 * Kumu::Megabyte); if (ASDCP_FAILURE (reader.ReadFrame (n, *_buffer))) { - boost::throw_exception (DCPReadError ("could not read video frame")); + boost::throw_exception (DCPReadError (String::compose ("could not read video frame %1 of %2", n, path.string()))); } } +StereoPictureFrame::StereoPictureFrame () +{ + _buffer = new ASDCP::JP2K::SFrameBuffer (4 * Kumu::Megabyte); +} + StereoPictureFrame::~StereoPictureFrame () { delete _buffer; @@ -62,29 +66,18 @@ StereoPictureFrame::~StereoPictureFrame () * @param reduce a factor by which to reduce the resolution * of the image, expressed as a power of two (pass 0 for no * reduction). - * @param srgb_gamma Reciprocal of gamma to use when doing the - * output gamma correction (after conversion from XYZ to RGB). - * - * @return An ARGB representation of one of the eyes (left or right) - * of this frame. This is ARGB in the Cairo sense, so that each - * pixel takes up 4 bytes; the first byte is blue, second green, - * third red and fourth alpha (always 255). - * */ -shared_ptr -StereoPictureFrame::argb_frame (Eye eye, int reduce, float srgb_gamma) const +shared_ptr +StereoPictureFrame::xyz_image (Eye eye, int reduce) const { - shared_ptr xyz_frame; switch (eye) { case LEFT: - xyz_frame = decompress_j2k (const_cast (_buffer->Left.RoData()), _buffer->Left.Size(), reduce); - break; + return decompress_j2k (const_cast (_buffer->Left.RoData()), _buffer->Left.Size(), reduce); case RIGHT: - xyz_frame = decompress_j2k (const_cast (_buffer->Right.RoData()), _buffer->Right.Size(), reduce); - break; + return decompress_j2k (const_cast (_buffer->Right.RoData()), _buffer->Right.Size(), reduce); } - - return xyz_to_rgb (xyz_frame, GammaLUT::cache.get (12, DCI_GAMMA), GammaLUT::cache.get (12, 1 / srgb_gamma)); + + return shared_ptr (); } uint8_t const * @@ -93,6 +86,12 @@ StereoPictureFrame::left_j2k_data () const return _buffer->Left.RoData (); } +uint8_t* +StereoPictureFrame::left_j2k_data () +{ + return _buffer->Left.Data (); +} + int StereoPictureFrame::left_j2k_size () const { @@ -105,6 +104,12 @@ StereoPictureFrame::right_j2k_data () const return _buffer->Right.RoData (); } +uint8_t* +StereoPictureFrame::right_j2k_data () +{ + return _buffer->Right.Data (); +} + int StereoPictureFrame::right_j2k_size () const {