Merge remote-tracking branch 'origin/main' into v2.17.x
[dcpomatic.git] / src / lib / cpu_j2k_encoder_thread.cc
1 /*
2     Copyright (C) 2023 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 #include "cpu_j2k_encoder_thread.h"
23 #include "cross.h"
24 #include "dcpomatic_log.h"
25 #include "dcp_video.h"
26 #include "j2k_encoder.h"
27 #include "util.h"
28
29 #include "i18n.h"
30
31
32 using std::make_shared;
33 using std::shared_ptr;
34
35
36 CPUJ2KEncoderThread::CPUJ2KEncoderThread(J2KEncoder& encoder)
37         : J2KSyncEncoderThread(encoder)
38 {
39
40 }
41
42
43 void
44 CPUJ2KEncoderThread::log_thread_start() const
45 {
46         start_of_thread("CPUJ2KEncoder");
47         LOG_TIMING("start-encoder-thread thread=%1 server=localhost", thread_id());
48 }
49
50
51 shared_ptr<dcp::ArrayData>
52 CPUJ2KEncoderThread::encode(DCPVideo const& frame)
53 {
54         try {
55                 return make_shared<dcp::ArrayData>(frame.encode_locally());
56         } catch (std::exception& e) {
57                 LOG_ERROR(N_("Local encode failed (%1)"), e.what());
58         }
59
60         return {};
61 }
62