df98d1a7b48e332495996b92e81140a8572e3ea6
[dcpomatic.git] / src / lib / j2k_encoder.h
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #ifndef DCPOMATIC_J2K_ENCODER_H
23 #define DCPOMATIC_J2K_ENCODER_H
24
25
26 /** @file  src/j2k_encoder.h
27  *  @brief J2KEncoder class.
28  */
29
30
31 #include "util.h"
32 #include "cross.h"
33 #include "event_history.h"
34 #include "exception_store.h"
35 #include "j2k_encoder_cpu_backend.h"
36 #include "j2k_encoder_remote_backend.h"
37 #include <boost/thread/mutex.hpp>
38 #include <boost/thread/condition.hpp>
39 #include <boost/thread.hpp>
40 #include <boost/optional.hpp>
41 #include <boost/signals2.hpp>
42 #include <list>
43 #include <stdint.h>
44
45
46 class Film;
47 class EncodeServerDescription;
48 class DCPVideo;
49 class Writer;
50 class J2KEncoderBackend;
51 class Job;
52 class PlayerVideo;
53
54
55 /** @class J2KEncoder
56  *  @brief Class to manage encoding to J2K.
57  *
58  *  This class keeps a queue of frames to be encoded and distributes
59  *  the work around threads and encoding servers.
60  */
61 class J2KEncoder : public ExceptionStore, public std::enable_shared_from_this<J2KEncoder>
62 {
63 public:
64         J2KEncoder (std::shared_ptr<const Film> film, std::shared_ptr<Writer> writer);
65         ~J2KEncoder ();
66
67         J2KEncoder (J2KEncoder const&) = delete;
68         J2KEncoder& operator= (J2KEncoder const&) = delete;
69
70         /** Called to indicate that a processing run is about to begin */
71         void begin ();
72
73         /** Called to pass a bit of video to be encoded as the next DCP frame */
74         void encode (std::shared_ptr<PlayerVideo> pv, dcpomatic::DCPTime time);
75
76         /** Called when a processing run has finished */
77         void end ();
78
79         boost::optional<float> current_encoding_rate () const;
80         int video_frames_enqueued () const;
81
82         void servers_list_changed ();
83
84 private:
85
86         static void call_servers_list_changed (std::weak_ptr<J2KEncoder> encoder);
87
88         void frame_done ();
89
90         void encoder_thread (std::shared_ptr<J2KEncoderBackend> backend);
91         void terminate_threads ();
92
93         std::shared_ptr<const Film> _film;
94
95
96         EventHistory _history;
97
98         boost::mutex _threads_mutex;
99         std::shared_ptr<boost::thread_group> _threads;
100
101         mutable boost::mutex _queue_mutex;
102         std::list<DCPVideo> _queue;
103         /** condition to manage thread wakeups when we have nothing to do */
104         boost::condition _empty_condition;
105         /** condition to manage thread wakeups when we have too much to do */
106         boost::condition _full_condition;
107
108         std::shared_ptr<Writer> _writer;
109         Waker _waker;
110
111         std::shared_ptr<PlayerVideo> _last_player_video[static_cast<int>(Eyes::COUNT)];
112         boost::optional<dcpomatic::DCPTime> _last_player_video_time;
113
114         boost::signals2::scoped_connection _server_found_connection;
115 };
116
117
118 #endif