1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "jpeg2000_encoder.h"
#include "poznan_encoder.h"
#include "openjpeg_encoder.h"
#include "exceptions.h"
#include <boost/shared_ptr.hpp>
#include <boost/foreach.hpp>
#include <vector>
using std::vector;
using std::string;
using boost::shared_ptr;
using dcp::Data;
#define LOG_GENERAL(...) log()->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
vector<boost::shared_ptr<JPEG2000Encoder> > JPEG2000Encoder::_encoders;
void
JPEG2000Encoder::setup_encoders ()
{
try {
_encoders.push_back (shared_ptr<JPEG2000Encoder> (new PoznanEncoder ()));
} catch (JPEG2000EncoderUnavailableException& e) {
std::cerr << e.what() << "\n";
}
try {
_encoders.push_back (shared_ptr<JPEG2000Encoder> (new OpenJPEGEncoder ()));
} catch (JPEG2000EncoderUnavailableException &) {
}
}
vector<shared_ptr<JPEG2000Encoder> >
JPEG2000Encoder::all ()
{
return _encoders;
}
shared_ptr<JPEG2000Encoder>
JPEG2000Encoder::from_id (string id)
{
BOOST_FOREACH (shared_ptr<JPEG2000Encoder> i, _encoders) {
if (i->id() == id) {
return i;
}
}
return shared_ptr<JPEG2000Encoder> ();
}
Data
JPEG2000Encoder::encode (shared_ptr<const dcp::OpenJPEGImage> input, int bandwidth, int frame_rate, Resolution resolution, bool threed)
{
std::cout << "Encoding with " << name() << "\n";
if (!_bandwidth || _bandwidth.get() != bandwidth ||
!_frame_rate || _frame_rate.get() != frame_rate ||
!_resolution || _resolution.get() != resolution ||
!_threed || _threed.get() != threed) {
_bandwidth = bandwidth;
_frame_rate = frame_rate;
_resolution = resolution;
_threed = threed;
parameters_changed ();
}
return do_encode (input);
}
|