LanguageTag strings should not care about case.
[libdcp.git] / src / stereo_picture_frame.cc
1 /*
2     Copyright (C) 2012-2014 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 namespace dcp;
48
49
50 StereoPictureFrame::Part::Part (shared_ptr<ASDCP::JP2K::SFrameBuffer> buffer, Eye eye)
51         : _buffer (buffer)
52         , _eye (eye)
53 {
54
55 }
56
57
58 ASDCP::JP2K::FrameBuffer &
59 StereoPictureFrame::Part::mono () const
60 {
61         return _eye == EYE_LEFT ? _buffer->Left : _buffer->Right;
62 }
63
64
65 uint8_t const *
66 StereoPictureFrame::Part::data () const
67 {
68         return mono().RoData();
69 }
70
71
72 uint8_t *
73 StereoPictureFrame::Part::data ()
74 {
75         return mono().Data();
76 }
77
78
79 int
80 StereoPictureFrame::Part::size () const
81 {
82         return mono().Size();
83 }
84
85
86 /** Make a picture frame from a 3D (stereoscopic) asset.
87  *  @param reader Reader for the MXF file.
88  *  @param n Frame within the asset, not taking EntryPoint into account.
89  */
90 StereoPictureFrame::StereoPictureFrame (ASDCP::JP2K::MXFSReader* reader, int n, shared_ptr<DecryptionContext> c)
91 {
92         /* XXX: unfortunate guesswork on this buffer size */
93         _buffer.reset(new ASDCP::JP2K::SFrameBuffer(4 * Kumu::Megabyte));
94
95         if (ASDCP_FAILURE (reader->ReadFrame (n, *_buffer, c->context(), c->hmac()))) {
96                 boost::throw_exception (ReadError (String::compose ("could not read video frame %1 of %2", n)));
97         }
98 }
99
100 StereoPictureFrame::StereoPictureFrame ()
101 {
102         _buffer.reset(new ASDCP::JP2K::SFrameBuffer(4 * Kumu::Megabyte));
103 }
104
105
106 /** @param eye Eye to return (EYE_LEFT or EYE_RIGHT).
107  *  @param reduce a factor by which to reduce the resolution
108  *  of the image, expressed as a power of two (pass 0 for no
109  *  reduction).
110  */
111 shared_ptr<OpenJPEGImage>
112 StereoPictureFrame::xyz_image (Eye eye, int reduce) const
113 {
114         switch (eye) {
115         case EYE_LEFT:
116                 return decompress_j2k (const_cast<uint8_t*> (_buffer->Left.RoData()), _buffer->Left.Size(), reduce);
117         case EYE_RIGHT:
118                 return decompress_j2k (const_cast<uint8_t*> (_buffer->Right.RoData()), _buffer->Right.Size(), reduce);
119         }
120
121         return shared_ptr<OpenJPEGImage> ();
122 }
123
124
125 shared_ptr<StereoPictureFrame::Part>
126 StereoPictureFrame::right () const
127 {
128         return shared_ptr<Part>(new Part(_buffer, EYE_RIGHT));
129 }
130
131
132 shared_ptr<StereoPictureFrame::Part>
133 StereoPictureFrame::left () const
134 {
135         return shared_ptr<Part>(new Part(_buffer, EYE_LEFT));
136 }
137
138