Add size and audio/subtitle languages to contact sheet.
[dcpomatic.git] / src / lib / writer.cc
1 /*
2     Copyright (C) 2012-2017 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 #include "writer.h"
22 #include "compose.hpp"
23 #include "film.h"
24 #include "ratio.h"
25 #include "log.h"
26 #include "dcp_video.h"
27 #include "dcp_content_type.h"
28 #include "audio_mapping.h"
29 #include "config.h"
30 #include "job.h"
31 #include "cross.h"
32 #include "audio_buffers.h"
33 #include "version.h"
34 #include "font.h"
35 #include "util.h"
36 #include "reel_writer.h"
37 #include <dcp/cpl.h>
38 #include <dcp/locale_convert.h>
39 #include <boost/foreach.hpp>
40 #include <fstream>
41 #include <cerrno>
42 #include <iostream>
43 #include <cfloat>
44
45 #include "i18n.h"
46
47 #define LOG_GENERAL(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
48 #define LOG_GENERAL_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
49 #define LOG_DEBUG_ENCODE(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_DEBUG_ENCODE);
50 #define LOG_TIMING(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_TIMING);
51 #define LOG_WARNING_NC(...) _film->log()->log (__VA_ARGS__, LogEntry::TYPE_WARNING);
52 #define LOG_WARNING(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_WARNING);
53 #define LOG_ERROR(...) _film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_ERROR);
54
55 /* OS X strikes again */
56 #undef set_key
57
58 using std::make_pair;
59 using std::pair;
60 using std::string;
61 using std::list;
62 using std::cout;
63 using std::map;
64 using std::min;
65 using std::max;
66 using boost::shared_ptr;
67 using boost::weak_ptr;
68 using boost::dynamic_pointer_cast;
69 using dcp::Data;
70
71 Writer::Writer (shared_ptr<const Film> film, weak_ptr<Job> j)
72         : _film (film)
73         , _job (j)
74         , _thread (0)
75         , _finish (false)
76         , _queued_full_in_memory (0)
77         , _maximum_frames_in_memory (0)
78         , _full_written (0)
79         , _fake_written (0)
80         , _repeat_written (0)
81         , _pushed_to_disk (0)
82 {
83         shared_ptr<Job> job = _job.lock ();
84         DCPOMATIC_ASSERT (job);
85
86         int reel_index = 0;
87         list<DCPTimePeriod> const reels = _film->reels ();
88         BOOST_FOREACH (DCPTimePeriod p, reels) {
89                 _reels.push_back (ReelWriter (film, p, job, reel_index++, reels.size(), _film->content_summary(p)));
90         }
91
92         /* We can keep track of the current audio and subtitle reels easily because audio
93            and subs arrive to the Writer in sequence.  This is not so for video.
94         */
95         _audio_reel = _reels.begin ();
96         _subtitle_reel = _reels.begin ();
97
98         /* Check that the signer is OK if we need one */
99         string reason;
100         if (_film->is_signed() && !Config::instance()->signer_chain()->valid(&reason)) {
101                 throw InvalidSignerError (reason);
102         }
103 }
104
105 void
106 Writer::start ()
107 {
108         _thread = new boost::thread (boost::bind (&Writer::thread, this));
109 }
110
111 Writer::~Writer ()
112 {
113         terminate_thread (false);
114 }
115
116 /** Pass a video frame to the writer for writing to disk at some point.
117  *  This method can be called with frames out of order.
118  *  @param encoded JPEG2000-encoded data.
119  *  @param frame Frame index within the DCP.
120  *  @param eyes Eyes that this frame image is for.
121  */
122 void
123 Writer::write (Data encoded, Frame frame, Eyes eyes)
124 {
125         boost::mutex::scoped_lock lock (_state_mutex);
126
127         while (_queued_full_in_memory > _maximum_frames_in_memory) {
128                 /* The queue is too big; wait until that is sorted out */
129                 _full_condition.wait (lock);
130         }
131
132         QueueItem qi;
133         qi.type = QueueItem::FULL;
134         qi.encoded = encoded;
135         qi.reel = video_reel (frame);
136         qi.frame = frame - _reels[qi.reel].start ();
137
138         if (_film->three_d() && eyes == EYES_BOTH) {
139                 /* 2D material in a 3D DCP; fake the 3D */
140                 qi.eyes = EYES_LEFT;
141                 _queue.push_back (qi);
142                 ++_queued_full_in_memory;
143                 qi.eyes = EYES_RIGHT;
144                 _queue.push_back (qi);
145                 ++_queued_full_in_memory;
146         } else {
147                 qi.eyes = eyes;
148                 _queue.push_back (qi);
149                 ++_queued_full_in_memory;
150         }
151
152         /* Now there's something to do: wake anything wait()ing on _empty_condition */
153         _empty_condition.notify_all ();
154 }
155
156 bool
157 Writer::can_repeat (Frame frame) const
158 {
159         return frame > _reels[video_reel(frame)].start();
160 }
161
162 /** Repeat the last frame that was written to a reel as a new frame.
163  *  @param frame Frame index within the DCP of the new (repeated) frame.
164  *  @param eyes Eyes that this repeated frame image is for.
165  */
166 void
167 Writer::repeat (Frame frame, Eyes eyes)
168 {
169         boost::mutex::scoped_lock lock (_state_mutex);
170
171         while (_queued_full_in_memory > _maximum_frames_in_memory) {
172                 /* The queue is too big; wait until that is sorted out */
173                 _full_condition.wait (lock);
174         }
175
176         QueueItem qi;
177         qi.type = QueueItem::REPEAT;
178         qi.reel = video_reel (frame);
179         qi.frame = frame - _reels[qi.reel].start ();
180         if (_film->three_d() && eyes == EYES_BOTH) {
181                 qi.eyes = EYES_LEFT;
182                 _queue.push_back (qi);
183                 qi.eyes = EYES_RIGHT;
184                 _queue.push_back (qi);
185         } else {
186                 qi.eyes = eyes;
187                 _queue.push_back (qi);
188         }
189
190         /* Now there's something to do: wake anything wait()ing on _empty_condition */
191         _empty_condition.notify_all ();
192 }
193
194 void
195 Writer::fake_write (Frame frame, Eyes eyes)
196 {
197         boost::mutex::scoped_lock lock (_state_mutex);
198
199         while (_queued_full_in_memory > _maximum_frames_in_memory) {
200                 /* The queue is too big; wait until that is sorted out */
201                 _full_condition.wait (lock);
202         }
203
204         size_t const reel = video_reel (frame);
205         Frame const reel_frame = frame - _reels[reel].start ();
206
207         FILE* file = fopen_boost (_film->info_file(_reels[reel].period()), "rb");
208         if (!file) {
209                 throw ReadFileError (_film->info_file(_reels[reel].period()));
210         }
211         dcp::FrameInfo info = _reels[reel].read_frame_info (file, reel_frame, eyes);
212         fclose (file);
213
214         QueueItem qi;
215         qi.type = QueueItem::FAKE;
216         qi.size = info.size;
217         qi.reel = reel;
218         qi.frame = reel_frame;
219         if (_film->three_d() && eyes == EYES_BOTH) {
220                 qi.eyes = EYES_LEFT;
221                 _queue.push_back (qi);
222                 qi.eyes = EYES_RIGHT;
223                 _queue.push_back (qi);
224         } else {
225                 qi.eyes = eyes;
226                 _queue.push_back (qi);
227         }
228
229         /* Now there's something to do: wake anything wait()ing on _empty_condition */
230         _empty_condition.notify_all ();
231 }
232
233 /** Write some audio frames to the DCP.
234  *  @param audio Audio data or 0 if there is no audio to be written here (i.e. it is referenced).
235  *  This method is not thread safe.
236  */
237 void
238 Writer::write (shared_ptr<const AudioBuffers> audio)
239 {
240         /* The audio we get might span a reel boundary, and if so we have to write it in bits */
241
242         int32_t offset = 0;
243         while (offset < audio->frames ()) {
244
245                 if (_audio_reel == _reels.end ()) {
246                         /* This audio is off the end of the last reel; ignore it */
247                         return;
248                 }
249
250                 int32_t const this_time = min (
251                         audio->frames() - offset,
252                         (int32_t) (_audio_reel->period().duration().frames_floor(_film->audio_frame_rate()) - _audio_reel->total_written_audio_frames())
253                         );
254
255                 if (this_time == audio->frames()) {
256                         /* Easy case: we can write all the audio to this reel */
257                         _audio_reel->write (audio);
258                 } else {
259                         /* Write the part we can */
260                         shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), this_time));
261                         part->copy_from (audio.get(), this_time, offset, 0);
262                         _audio_reel->write (part);
263                         ++_audio_reel;
264                 }
265
266                 offset += this_time;
267         }
268 }
269
270 /** This must be called from Writer::thread() with an appropriate lock held */
271 bool
272 Writer::have_sequenced_image_at_queue_head ()
273 {
274         if (_queue.empty ()) {
275                 return false;
276         }
277
278         _queue.sort ();
279
280         QueueItem const & f = _queue.front();
281         ReelWriter const & reel = _reels[f.reel];
282
283         /* The queue should contain only EYES_LEFT/EYES_RIGHT pairs or EYES_BOTH */
284
285         if (f.eyes == EYES_BOTH) {
286                 /* 2D */
287                 return f.frame == (reel.last_written_video_frame() + 1);
288         }
289
290         /* 3D */
291
292         if (reel.last_written_eyes() == EYES_LEFT && f.frame == reel.last_written_video_frame() && f.eyes == EYES_RIGHT) {
293                 return true;
294         }
295
296         if (reel.last_written_eyes() == EYES_RIGHT && f.frame == (reel.last_written_video_frame() + 1) && f.eyes == EYES_LEFT) {
297                 return true;
298         }
299
300         return false;
301 }
302
303 void
304 Writer::thread ()
305 try
306 {
307         while (true)
308         {
309                 boost::mutex::scoped_lock lock (_state_mutex);
310
311                 while (true) {
312
313                         if (_finish || _queued_full_in_memory > _maximum_frames_in_memory || have_sequenced_image_at_queue_head ()) {
314                                 /* We've got something to do: go and do it */
315                                 break;
316                         }
317
318                         /* Nothing to do: wait until something happens which may indicate that we do */
319                         LOG_TIMING (N_("writer-sleep queue=%1"), _queue.size());
320                         _empty_condition.wait (lock);
321                         LOG_TIMING (N_("writer-wake queue=%1"), _queue.size());
322                 }
323
324                 if (_finish && _queue.empty()) {
325                         return;
326                 }
327
328                 /* We stop here if we have been asked to finish, and if either the queue
329                    is empty or we do not have a sequenced image at its head (if this is the
330                    case we will never terminate as no new frames will be sent once
331                    _finish is true).
332                 */
333                 if (_finish && (!have_sequenced_image_at_queue_head() || _queue.empty())) {
334                         /* (Hopefully temporarily) log anything that was not written */
335                         if (!_queue.empty() && !have_sequenced_image_at_queue_head()) {
336                                 LOG_WARNING (N_("Finishing writer with a left-over queue of %1:"), _queue.size());
337                                 for (list<QueueItem>::const_iterator i = _queue.begin(); i != _queue.end(); ++i) {
338                                         if (i->type == QueueItem::FULL) {
339                                                 LOG_WARNING (N_("- type FULL, frame %1, eyes %2"), i->frame, (int) i->eyes);
340                                         } else {
341                                                 LOG_WARNING (N_("- type FAKE, size %1, frame %2, eyes %3"), i->size, i->frame, (int) i->eyes);
342                                         }
343                                 }
344                         }
345                         return;
346                 }
347
348                 /* Write any frames that we can write; i.e. those that are in sequence. */
349                 while (have_sequenced_image_at_queue_head ()) {
350                         QueueItem qi = _queue.front ();
351                         _queue.pop_front ();
352                         if (qi.type == QueueItem::FULL && qi.encoded) {
353                                 --_queued_full_in_memory;
354                         }
355
356                         lock.unlock ();
357
358                         ReelWriter& reel = _reels[qi.reel];
359
360                         switch (qi.type) {
361                         case QueueItem::FULL:
362                                 LOG_DEBUG_ENCODE (N_("Writer FULL-writes %1 (%2)"), qi.frame, (int) qi.eyes);
363                                 if (!qi.encoded) {
364                                         qi.encoded = Data (_film->j2c_path (qi.reel, qi.frame, qi.eyes, false));
365                                 }
366                                 reel.write (qi.encoded, qi.frame, qi.eyes);
367                                 ++_full_written;
368                                 break;
369                         case QueueItem::FAKE:
370                                 LOG_DEBUG_ENCODE (N_("Writer FAKE-writes %1"), qi.frame);
371                                 reel.fake_write (qi.frame, qi.eyes, qi.size);
372                                 ++_fake_written;
373                                 break;
374                         case QueueItem::REPEAT:
375                                 LOG_DEBUG_ENCODE (N_("Writer REPEAT-writes %1"), qi.frame);
376                                 reel.repeat_write (qi.frame, qi.eyes);
377                                 ++_repeat_written;
378                                 break;
379                         }
380
381                         lock.lock ();
382                 }
383
384                 while (_queued_full_in_memory > _maximum_frames_in_memory) {
385                         /* Too many frames in memory which can't yet be written to the stream.
386                            Write some FULL frames to disk.
387                         */
388
389                         /* Find one from the back of the queue */
390                         _queue.sort ();
391                         list<QueueItem>::reverse_iterator i = _queue.rbegin ();
392                         while (i != _queue.rend() && (i->type != QueueItem::FULL || !i->encoded)) {
393                                 ++i;
394                         }
395
396                         DCPOMATIC_ASSERT (i != _queue.rend());
397                         ++_pushed_to_disk;
398                         /* For the log message below */
399                         int const awaiting = _reels[_queue.front().reel].last_written_video_frame();
400                         lock.unlock ();
401
402                         /* i is valid here, even though we don't hold a lock on the mutex,
403                            since list iterators are unaffected by insertion and only this
404                            thread could erase the last item in the list.
405                         */
406
407                         LOG_GENERAL ("Writer full; pushes %1 to disk while awaiting %2", i->frame, awaiting);
408
409                         i->encoded->write_via_temp (
410                                 _film->j2c_path (i->reel, i->frame, i->eyes, true),
411                                 _film->j2c_path (i->reel, i->frame, i->eyes, false)
412                                 );
413
414                         lock.lock ();
415                         i->encoded.reset ();
416                         --_queued_full_in_memory;
417                 }
418
419                 /* The queue has probably just gone down a bit; notify anything wait()ing on _full_condition */
420                 _full_condition.notify_all ();
421         }
422 }
423 catch (...)
424 {
425         store_current ();
426 }
427
428 void
429 Writer::terminate_thread (bool can_throw)
430 {
431         boost::mutex::scoped_lock lock (_state_mutex);
432         if (_thread == 0) {
433                 return;
434         }
435
436         _finish = true;
437         _empty_condition.notify_all ();
438         _full_condition.notify_all ();
439         lock.unlock ();
440
441         if (_thread->joinable ()) {
442                 _thread->join ();
443         }
444
445         if (can_throw) {
446                 rethrow ();
447         }
448
449         delete _thread;
450         _thread = 0;
451 }
452
453 void
454 Writer::finish ()
455 {
456         if (!_thread) {
457                 return;
458         }
459
460         LOG_GENERAL_NC ("Terminating writer thread");
461
462         terminate_thread (true);
463
464         LOG_GENERAL_NC ("Finishing ReelWriters");
465
466         BOOST_FOREACH (ReelWriter& i, _reels) {
467                 i.finish ();
468         }
469
470         LOG_GENERAL_NC ("Writing XML");
471
472         dcp::DCP dcp (_film->dir (_film->dcp_name()));
473
474         shared_ptr<dcp::CPL> cpl (
475                 new dcp::CPL (
476                         _film->dcp_name(),
477                         _film->dcp_content_type()->libdcp_kind ()
478                         )
479                 );
480
481         dcp.add (cpl);
482
483         /* Calculate digests for each reel in parallel */
484
485         shared_ptr<Job> job = _job.lock ();
486         job->sub (_("Computing digests"));
487
488         boost::asio::io_service service;
489         boost::thread_group pool;
490
491         shared_ptr<boost::asio::io_service::work> work (new boost::asio::io_service::work (service));
492
493         int const threads = max (1, Config::instance()->master_encoding_threads ());
494
495         for (int i = 0; i < threads; ++i) {
496                 pool.create_thread (boost::bind (&boost::asio::io_service::run, &service));
497         }
498
499         BOOST_FOREACH (ReelWriter& i, _reels) {
500                 boost::function<void (float)> set_progress = boost::bind (&Writer::set_digest_progress, this, job.get(), _1);
501                 service.post (boost::bind (&ReelWriter::calculate_digests, &i, set_progress));
502         }
503
504         work.reset ();
505         pool.join_all ();
506         service.stop ();
507
508         /* Add reels to CPL */
509
510         BOOST_FOREACH (ReelWriter& i, _reels) {
511                 cpl->add (i.create_reel (_reel_assets, _fonts));
512         }
513
514         dcp::XMLMetadata meta;
515         meta.annotation_text = cpl->annotation_text ();
516         meta.creator = Config::instance()->dcp_creator ();
517         if (meta.creator.empty ()) {
518                 meta.creator = String::compose ("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit);
519         }
520         meta.issuer = Config::instance()->dcp_issuer ();
521         if (meta.issuer.empty ()) {
522                 meta.issuer = String::compose ("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit);
523         }
524         meta.set_issue_date_now ();
525
526         cpl->set_metadata (meta);
527
528         shared_ptr<const dcp::CertificateChain> signer;
529         if (_film->is_signed ()) {
530                 signer = Config::instance()->signer_chain ();
531                 /* We did check earlier, but check again here to be on the safe side */
532                 string reason;
533                 if (!signer->valid (&reason)) {
534                         throw InvalidSignerError (reason);
535                 }
536         }
537
538         dcp.write_xml (_film->interop () ? dcp::INTEROP : dcp::SMPTE, meta, signer, Config::instance()->dcp_metadata_filename_format());
539
540         LOG_GENERAL (
541                 N_("Wrote %1 FULL, %2 FAKE, %3 REPEAT, %4 pushed to disk"), _full_written, _fake_written, _repeat_written, _pushed_to_disk
542                 );
543
544         write_cover_sheet ();
545 }
546
547 void
548 Writer::write_cover_sheet ()
549 {
550         boost::filesystem::path const cover = _film->file ("COVER_SHEET.txt");
551         FILE* f = fopen_boost (cover, "w");
552         if (!f) {
553                 throw OpenFileError (cover, errno, false);
554         }
555
556         string text = Config::instance()->cover_sheet ();
557         boost::algorithm::replace_all (text, "$CPL_NAME", _film->name());
558         boost::algorithm::replace_all (text, "$TYPE", _film->dcp_content_type()->pretty_name());
559         boost::algorithm::replace_all (text, "$CONTAINER", _film->container()->nickname());
560         boost::algorithm::replace_all (text, "$AUDIO_LANGUAGE", _film->isdcf_metadata().audio_language);
561         boost::algorithm::replace_all (text, "$SUBTITLE_LANGUAGE", _film->isdcf_metadata().subtitle_language);
562
563         boost::uintmax_t size = 0;
564         for (
565                 boost::filesystem::recursive_directory_iterator i = boost::filesystem::recursive_directory_iterator(_film->dir(_film->dcp_name()));
566                 i != boost::filesystem::recursive_directory_iterator();
567                 ++i) {
568                 size += boost::filesystem::file_size (i->path ());
569         }
570
571         if (size > (1000000000L)) {
572                 boost::algorithm::replace_all (text, "$SIZE", String::compose ("%1GB", dcp::locale_convert<string> (size / 1000000000.0, 1, true)));
573         } else {
574                 boost::algorithm::replace_all (text, "$SIZE", String::compose ("%1MB", dcp::locale_convert<string> (size / 1000000.0, 1, true)));
575         }
576
577         pair<int, int> ch = audio_channel_types (_film->mapped_audio_channels(), _film->audio_channels());
578         string description = String::compose("%1.%2", ch.first, ch.second);
579
580         if (description == "0.0") {
581                 description = _("None");
582         } else if (description == "1.0") {
583                 description = _("Mono");
584         } else if (description == "2.0") {
585                 description = _("Stereo");
586         }
587         boost::algorithm::replace_all (text, "$AUDIO", description);
588
589         int h, m, s, fr;
590         _film->length().split (_film->video_frame_rate(), h, m, s, fr);
591         string length;
592         if (h == 0 && m == 0) {
593                 length = String::compose("%1s", s);
594         } else if (h == 0 && m > 0) {
595                 length = String::compose("%1m%2s", m, s);
596         } else if (h > 0 && m > 0) {
597                 length = String::compose("%1h%2m%3s", h, m, s);
598         }
599
600         boost::algorithm::replace_all (text, "$LENGTH", length);
601
602         fwrite (text.c_str(), 1, text.length(), f);
603         fclose (f);
604 }
605
606 /** @param frame Frame index within the whole DCP.
607  *  @return true if we can fake-write this frame.
608  */
609 bool
610 Writer::can_fake_write (Frame frame) const
611 {
612         /* We have to do a proper write of the first frame so that we can set up the JPEG2000
613            parameters in the asset writer.
614         */
615
616         ReelWriter const & reel = _reels[video_reel(frame)];
617
618         /* Make frame relative to the start of the reel */
619         frame -= reel.start ();
620         return (frame != 0 && frame < reel.first_nonexistant_frame());
621 }
622
623 void
624 Writer::write (PlayerSubtitles subs, DCPTimePeriod period)
625 {
626         if (subs.text.empty ()) {
627                 return;
628         }
629
630         if (_subtitle_reel->period().to <= period.from) {
631                 ++_subtitle_reel;
632         }
633
634         _subtitle_reel->write (subs);
635 }
636
637 void
638 Writer::write (list<shared_ptr<Font> > fonts)
639 {
640         /* Just keep a list of unique fonts and we'll deal with them in ::finish */
641
642         BOOST_FOREACH (shared_ptr<Font> i, fonts) {
643                 bool got = false;
644                 BOOST_FOREACH (shared_ptr<Font> j, _fonts) {
645                         if (*i == *j) {
646                                 got = true;
647                         }
648                 }
649
650                 if (!got) {
651                         _fonts.push_back (i);
652                 }
653         }
654 }
655
656 bool
657 operator< (QueueItem const & a, QueueItem const & b)
658 {
659         if (a.reel != b.reel) {
660                 return a.reel < b.reel;
661         }
662
663         if (a.frame != b.frame) {
664                 return a.frame < b.frame;
665         }
666
667         return static_cast<int> (a.eyes) < static_cast<int> (b.eyes);
668 }
669
670 bool
671 operator== (QueueItem const & a, QueueItem const & b)
672 {
673         return a.reel == b.reel && a.frame == b.frame && a.eyes == b.eyes;
674 }
675
676 void
677 Writer::set_encoder_threads (int threads)
678 {
679         /* I think the scaling factor here should be the ratio of the longest frame
680            encode time to the shortest; if the thread count is T, longest time is L
681            and the shortest time S we could encode L/S frames per thread whilst waiting
682            for the L frame to encode so we might have to store LT/S frames.
683
684            However we don't want to use too much memory, so keep it a bit lower than we'd
685            perhaps like.  A J2K frame is typically about 1Mb so 3 here will mean we could
686            use about 240Mb with 72 encoding threads.
687         */
688         _maximum_frames_in_memory = lrint (threads * 3);
689 }
690
691 void
692 Writer::write (ReferencedReelAsset asset)
693 {
694         _reel_assets.push_back (asset);
695 }
696
697 size_t
698 Writer::video_reel (int frame) const
699 {
700         DCPTime t = DCPTime::from_frames (frame, _film->video_frame_rate ());
701         size_t i = 0;
702         while (i < _reels.size() && !_reels[i].period().contains (t)) {
703                 ++i;
704         }
705
706         DCPOMATIC_ASSERT (i < _reels.size ());
707         return i;
708 }
709
710 void
711 Writer::set_digest_progress (Job* job, float progress)
712 {
713         /* I believe this is thread-safe */
714         _digest_progresses[boost::this_thread::get_id()] = progress;
715
716         boost::mutex::scoped_lock lm (_digest_progresses_mutex);
717         float min_progress = FLT_MAX;
718         for (map<boost::thread::id, float>::const_iterator i = _digest_progresses.begin(); i != _digest_progresses.end(); ++i) {
719                 min_progress = min (min_progress, i->second);
720         }
721
722         job->set_progress (min_progress);
723 }