blob: c72a1debee87f959f1a98a8cdbb0f9000242d0ed (
plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic 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.
DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DCPOMATIC_J2K_ENCODER_H
#define DCPOMATIC_J2K_ENCODER_H
/** @file src/j2k_encoder.h
* @brief J2KEncoder class.
*/
#include "cross.h"
#include "enum_indexed_vector.h"
#include "event_history.h"
#include "exception_store.h"
#include "j2k_encoder_thread.h"
#include "writer.h"
#include "video_encoder.h"
#include <boost/optional.hpp>
#include <boost/signals2.hpp>
#include <boost/thread.hpp>
#include <boost/thread/condition.hpp>
#include <boost/thread/mutex.hpp>
#include <list>
#include <stdint.h>
class DCPVideo;
class EncodeServerDescription;
class Film;
class Job;
class PlayerVideo;
namespace grk_plugin {
struct DcpomaticContext;
struct GrokContext;
}
struct local_threads_created_and_destroyed;
struct remote_threads_created_and_destroyed;
struct frames_not_lost_when_threads_disappear;
/** @class J2KEncoder
* @brief Class to manage encoding to J2K.
*
* This class keeps a queue of frames to be encoded and distributes
* the work around threads and encoding servers.
*/
class J2KEncoder : public VideoEncoder, public ExceptionStore
{
public:
J2KEncoder(std::shared_ptr<const Film> film, Writer& writer);
~J2KEncoder ();
J2KEncoder (J2KEncoder const&) = delete;
J2KEncoder& operator= (J2KEncoder const&) = delete;
/** Called to indicate that a processing run is about to begin */
void begin() override;
/** Called to pass a bit of video to be encoded as the next DCP frame */
void encode (std::shared_ptr<PlayerVideo> pv, dcpomatic::DCPTime time) override;
void pause() override;
void resume() override;
/** Called when a processing run has finished */
void end() override;
DCPVideo pop();
void retry(DCPVideo frame);
void write(std::shared_ptr<const dcp::Data> data, int index, Eyes eyes);
private:
friend struct ::local_threads_created_and_destroyed;
friend struct ::remote_threads_created_and_destroyed;
friend struct ::frames_not_lost_when_threads_disappear;
void frame_done ();
void servers_list_changed ();
void remake_threads(int cpu, int gpu, std::list<EncodeServerDescription> servers);
void terminate_threads ();
boost::mutex _threads_mutex;
std::vector<std::shared_ptr<J2KEncoderThread>> _threads;
mutable boost::mutex _queue_mutex;
std::list<DCPVideo> _queue;
/** condition to manage thread wakeups when we have nothing to do */
boost::condition _empty_condition;
/** condition to manage thread wakeups when we have too much to do */
boost::condition _full_condition;
Waker _waker;
EnumIndexedVector<std::shared_ptr<PlayerVideo>, Eyes> _last_player_video;
boost::signals2::scoped_connection _server_found_connection;
#ifdef DCPOMATIC_GROK
grk_plugin::DcpomaticContext* _dcpomatic_context = nullptr;
grk_plugin::GrokContext *_context = nullptr;
#endif
bool _ending = false;
};
#endif
|