Use enum class for the things in types.h
[libdcp.git] / src / stereo_picture_frame.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     libdcp is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34 #include "stereo_picture_frame.h"
35 #include "exceptions.h"
36 #include "util.h"
37 #include "rgb_xyz.h"
38 #include "colour_conversion.h"
39 #include "compose.hpp"
40 #include "j2k.h"
41 #include "crypto_context.h"
42 #include <asdcp/AS_DCP.h>
43 #include <asdcp/KM_fileio.h>
44
45 using std::string;
46 using std::shared_ptr;
47 using std::make_shared;
48 using namespace dcp;
49
50
51 StereoPictureFrame::Part::Part (shared_ptr<ASDCP::JP2K::SFrameBuffer> buffer, Eye eye)
52         : _buffer (buffer)
53         , _eye (eye)
54 {
55
56 }
57
58
59 ASDCP::JP2K::FrameBuffer &
60 StereoPictureFrame::Part::mono () const
61 {
62         return _eye == Eye::LEFT ? _buffer->Left : _buffer->Right;
63 }
64
65
66 uint8_t const *
67 StereoPictureFrame::Part::data () const
68 {
69         return mono().RoData();
70 }
71
72
73 uint8_t *
74 StereoPictureFrame::Part::data ()
75 {
76         return mono().Data();
77 }
78
79
80 int
81 StereoPictureFrame::Part::size () const
82 {
83         return mono().Size();
84 }
85
86
87 /** Make a picture frame from a 3D (stereoscopic) asset.
88  *  @param reader Reader for the MXF file.
89  *  @param n Frame within the asset, not taking EntryPoint into account.
90  */
91 StereoPictureFrame::StereoPictureFrame (ASDCP::JP2K::MXFSReader* reader, int n, shared_ptr<DecryptionContext> c)
92 {
93         /* XXX: unfortunate guesswork on this buffer size */
94         _buffer.reset(new ASDCP::JP2K::SFrameBuffer(4 * Kumu::Megabyte));
95
96         if (ASDCP_FAILURE (reader->ReadFrame (n, *_buffer, c->context(), c->hmac()))) {
97                 boost::throw_exception (ReadError (String::compose ("could not read video frame %1 of %2", n)));
98         }
99 }
100
101 StereoPictureFrame::StereoPictureFrame ()
102 {
103         _buffer.reset(new ASDCP::JP2K::SFrameBuffer(4 * Kumu::Megabyte));
104 }
105
106
107 /** @param eye Eye to return (EYE_LEFT or EYE_RIGHT).
108  *  @param reduce a factor by which to reduce the resolution
109  *  of the image, expressed as a power of two (pass 0 for no
110  *  reduction).
111  */
112 shared_ptr<OpenJPEGImage>
113 StereoPictureFrame::xyz_image (Eye eye, int reduce) const
114 {
115         switch (eye) {
116         case Eye::LEFT:
117                 return decompress_j2k (const_cast<uint8_t*> (_buffer->Left.RoData()), _buffer->Left.Size(), reduce);
118         case Eye::RIGHT:
119                 return decompress_j2k (const_cast<uint8_t*> (_buffer->Right.RoData()), _buffer->Right.Size(), reduce);
120         }
121
122         return shared_ptr<OpenJPEGImage> ();
123 }
124
125
126 shared_ptr<StereoPictureFrame::Part>
127 StereoPictureFrame::right () const
128 {
129         return make_shared<Part>(_buffer, Eye::RIGHT);
130 }
131
132
133 shared_ptr<StereoPictureFrame::Part>
134 StereoPictureFrame::left () const
135 {
136         return make_shared<Part>(_buffer, Eye::LEFT);
137 }
138
139