Try to fix static initialisation order problems.
[libdcp.git] / src / mono_picture_frame.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/mono_picture_frame.cc
21  *  @brief MonoPictureFrame class.
22  */
23
24 #include "mono_picture_frame.h"
25 #include "exceptions.h"
26 #include "argb_frame.h"
27 #include "util.h"
28 #include "rgb_xyz.h"
29 #include "colour_conversion.h"
30 #include "KM_fileio.h"
31 #include "AS_DCP.h"
32 #include <openjpeg.h>
33
34 #define DCI_GAMMA 2.6
35
36 using std::string;
37 using boost::shared_ptr;
38 using namespace dcp;
39
40 /** Make a picture frame from a JPEG2000 file.
41  *  @param path Path to JPEG2000 file.
42  */
43 MonoPictureFrame::MonoPictureFrame (boost::filesystem::path path)
44 {
45         boost::uintmax_t const size = boost::filesystem::file_size (path);
46         _buffer = new ASDCP::JP2K::FrameBuffer (size);
47         FILE* f = fopen_boost (path, "r");
48         if (!f) {
49                 boost::throw_exception (FileError ("could not open JPEG2000 file", path, errno));
50         }
51
52         fread (j2k_data(), 1, size, f);
53         fclose (f);
54
55         _buffer->Size (size);
56 }
57
58 /** Make a picture frame from a 2D (monoscopic) asset.
59  *  @param mxf_path Path to the asset's MXF file.
60  *  @param n Frame within the asset, not taking EntryPoint into account.
61  *  @param c Context for decryption, or 0.
62  */
63 MonoPictureFrame::MonoPictureFrame (boost::filesystem::path mxf_path, int n, ASDCP::AESDecContext* c)
64 {
65         ASDCP::JP2K::MXFReader reader;
66         Kumu::Result_t r = reader.OpenRead (mxf_path.string().c_str());
67         if (ASDCP_FAILURE (r)) {
68                 boost::throw_exception (FileError ("could not open MXF file for reading", mxf_path, r));
69         }
70
71         /* XXX: unfortunate guesswork on this buffer size */
72         _buffer = new ASDCP::JP2K::FrameBuffer (4 * Kumu::Megabyte);
73
74         if (ASDCP_FAILURE (reader.ReadFrame (n, *_buffer, c))) {
75                 boost::throw_exception (DCPReadError ("could not read video frame"));
76         }
77 }
78
79 MonoPictureFrame::MonoPictureFrame ()
80 {
81         _buffer = new ASDCP::JP2K::FrameBuffer (4 * Kumu::Megabyte);
82 }
83
84 /** MonoPictureFrame destructor */
85 MonoPictureFrame::~MonoPictureFrame ()
86 {
87         delete _buffer;
88 }
89
90 /** @return Pointer to JPEG2000 data */
91 uint8_t const *
92 MonoPictureFrame::j2k_data () const
93 {
94         return _buffer->RoData ();
95 }
96
97 /** @return Pointer to JPEG2000 data */
98 uint8_t *
99 MonoPictureFrame::j2k_data ()
100 {
101         return _buffer->Data ();
102 }
103
104 /** @return Size of JPEG2000 data in bytes */
105 int
106 MonoPictureFrame::j2k_size () const
107 {
108         return _buffer->Size ();
109 }
110
111 /** @param reduce a factor by which to reduce the resolution
112  *  of the image, expressed as a power of two (pass 0 for no
113  *  reduction).
114  *  @param srgb_gamma Reciprocal of output gamma to use after
115  *  the conversion from XYZ to RGB.
116  *
117  *  @return An ARGB representation of this frame.  This is ARGB in the
118  *  Cairo sense, so that each pixel takes up 4 bytes; the first byte
119  *  is blue, second green, third red and fourth alpha (always 255).
120  */
121 shared_ptr<ARGBFrame>
122 MonoPictureFrame::argb_frame (int reduce, float srgb_gamma) const
123 {
124         return xyz_to_rgba (
125                 decompress_j2k (const_cast<uint8_t*> (_buffer->RoData()), _buffer->Size(), reduce),
126                 ColourConversion::xyz_to_srgb ()
127                 );
128 }
129
130 void
131 MonoPictureFrame::rgb_frame (uint16_t* buffer) const
132 {
133         xyz_to_rgb (
134                 decompress_j2k (const_cast<uint8_t*> (_buffer->RoData()), _buffer->Size(), 0),
135                 ColourConversion::xyz_to_srgb (),
136                 buffer
137                 );
138 }