Change end() to only do one thing, and copy the required stuff into pause()
[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 #include "grok/context.h"
31
32 #include "cross.h"
33 #include "dcp_video.h"
34 #include "enum_indexed_vector.h"
35 #include "event_history.h"
36 #include "exception_store.h"
37 #include "writer.h"
38 #include <boost/optional.hpp>
39 #include <boost/signals2.hpp>
40 #include <boost/thread.hpp>
41 #include <boost/thread/condition.hpp>
42 #include <boost/thread/mutex.hpp>
43 #include <list>
44 #include <stdint.h>
45
46 class EncodeServerDescription;
47 class Film;
48 class Job;
49 class PlayerVideo;
50
51
52 /** @class J2KEncoder
53  *  @brief Class to manage encoding to J2K.
54  *
55  *  This class keeps a queue of frames to be encoded and distributes
56  *  the work around threads and encoding servers.
57  */
58 class J2KEncoder : public ExceptionStore
59 {
60 public:
61         J2KEncoder(std::shared_ptr<const Film> film, Writer& writer);
62         ~J2KEncoder ();
63
64         J2KEncoder (J2KEncoder const&) = delete;
65         J2KEncoder& operator= (J2KEncoder const&) = delete;
66
67         /** Called to indicate that a processing run is about to begin */
68         void begin ();
69
70         /** Called to pass a bit of video to be encoded as the next DCP frame */
71         void encode (std::shared_ptr<PlayerVideo> pv, dcpomatic::DCPTime time);
72
73         void pause();
74         void resume();
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         void frame_done ();
87
88         void encoder_thread (boost::optional<EncodeServerDescription>);
89         void terminate_threads ();
90
91         /** Film that we are encoding */
92         std::shared_ptr<const Film> _film;
93
94         EventHistory _history;
95
96         boost::mutex _threads_mutex;
97         std::shared_ptr<boost::thread_group> _threads;
98
99         mutable boost::mutex _queue_mutex;
100         std::list<DCPVideo> _queue;
101         /** condition to manage thread wakeups when we have nothing to do */
102         boost::condition _empty_condition;
103         /** condition to manage thread wakeups when we have too much to do */
104         boost::condition _full_condition;
105
106         Writer& _writer;
107         Waker _waker;
108
109         EnumIndexedVector<std::shared_ptr<PlayerVideo>, Eyes> _last_player_video;
110         boost::optional<dcpomatic::DCPTime> _last_player_video_time;
111
112         boost::signals2::scoped_connection _server_found_connection;
113
114         grk_plugin::DcpomaticContext _dcpomatic_context;
115         grk_plugin::GrokContext *_context;
116 };
117
118
119 #endif