Various build fixes.
[dcpomatic.git] / src / lib / jpeg2000_encoder.cc
1 /*
2     Copyright (C) 2015 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 #include "jpeg2000_encoder.h"
21 #include "poznan_encoder.h"
22 #include "openjpeg_encoder.h"
23 #include "exceptions.h"
24 #include <boost/shared_ptr.hpp>
25 #include <boost/foreach.hpp>
26 #include <vector>
27
28 using std::vector;
29 using std::string;
30 using boost::shared_ptr;
31 using dcp::Data;
32
33 #define LOG_GENERAL(...) log()->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
34
35 vector<boost::shared_ptr<JPEG2000Encoder> > JPEG2000Encoder::_encoders;
36
37 void
38 JPEG2000Encoder::setup_encoders ()
39 {
40         try {
41                 _encoders.push_back (shared_ptr<JPEG2000Encoder> (new PoznanEncoder ()));
42         } catch (JPEG2000EncoderUnavailableException& e) {
43                 std::cerr << e.what() << "\n";
44         }
45
46         try {
47                 _encoders.push_back (shared_ptr<JPEG2000Encoder> (new OpenJPEGEncoder ()));
48         } catch (JPEG2000EncoderUnavailableException &) {
49
50         }
51 }
52
53 vector<shared_ptr<JPEG2000Encoder> >
54 JPEG2000Encoder::all ()
55 {
56         return _encoders;
57 }
58
59 shared_ptr<JPEG2000Encoder>
60 JPEG2000Encoder::from_id (string id)
61 {
62         BOOST_FOREACH (shared_ptr<JPEG2000Encoder> i, _encoders) {
63                 if (i->id() == id) {
64                         return i;
65                 }
66         }
67
68         return shared_ptr<JPEG2000Encoder> ();
69 }
70
71 Data
72 JPEG2000Encoder::encode (shared_ptr<const dcp::OpenJPEGImage> input, int bandwidth, int frame_rate, Resolution resolution, bool threed)
73 {
74         std::cout << "Encoding with " << name() << "\n";
75
76         if (!_bandwidth || _bandwidth.get() != bandwidth ||
77             !_frame_rate || _frame_rate.get() != frame_rate ||
78             !_resolution || _resolution.get() != resolution ||
79             !_threed || _threed.get() != threed) {
80
81                 _bandwidth = bandwidth;
82                 _frame_rate = frame_rate;
83                 _resolution = resolution;
84                 _threed = threed;
85
86                 parameters_changed ();
87         }
88
89         return do_encode (input);
90 }