Various build fixes.
[dcpomatic.git] / src / lib / openjpeg_encoder.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3     Adapted from code Copyright (C) 2010-2011 Terrence Meiczinger
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include "openjpeg_encoder.h"
22 #include "exceptions.h"
23 #include <dcp/data.h>
24 #include <dcp/j2k.h>
25 #include <dcp/openjpeg_image.h>
26
27 #include "i18n.h"
28
29 using std::string;
30 using boost::shared_ptr;
31 using dcp::Data;
32
33 string
34 OpenJPEGEncoder::name () const
35 {
36         return _("OpenJPEG library");
37 }
38
39 Data
40 OpenJPEGEncoder::do_encode (shared_ptr<const dcp::OpenJPEGImage> input)
41 {
42         return dcp::compress_j2k (input, _bandwidth.get(), _frame_rate.get(), _threed.get(), _resolution.get() == RESOLUTION_4K);
43 }
44