Fix incorrect audio MXFs when writing multiple reels.
[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 remaining = audio->frames() - offset;
251                 int32_t const reel_space = _audio_reel->period().duration().frames_floor(_film->audio_frame_rate()) - _audio_reel->total_written_audio_frames();
252
253                 if (remaining <= reel_space) {
254                         /* Easy case: we can write all the audio to this reel */
255                         _audio_reel->write (audio);
256                         offset += remaining;
257                 } else {
258                         /* Write the part we can */
259                         shared_ptr<AudioBuffers> part (new AudioBuffers (audio->channels(), reel_space));
260                         part->copy_from (audio.get(), reel_space, offset, 0);
261                         _audio_reel->write (part);
262                         ++_audio_reel;
263                         offset += reel_space;
264                 }
265         }
266 }
267
268 /** This must be called from Writer::thread() with an appropriate lock held */
269 bool
270 Writer::have_sequenced_image_at_queue_head ()
271 {
272         if (_queue.empty ()) {
273                 return false;
274         }
275
276         _queue.sort ();
277
278         QueueItem const & f = _queue.front();
279         ReelWriter const & reel = _reels[f.reel];
280
281         /* The queue should contain only EYES_LEFT/EYES_RIGHT pairs or EYES_BOTH */
282
283         if (f.eyes == EYES_BOTH) {
284                 /* 2D */
285                 return f.frame == (reel.last_written_video_frame() + 1);
286         }
287
288         /* 3D */
289
290         if (reel.last_written_eyes() == EYES_LEFT && f.frame == reel.last_written_video_frame() && f.eyes == EYES_RIGHT) {
291                 return true;
292         }
293
294         if (reel.last_written_eyes() == EYES_RIGHT && f.frame == (reel.last_written_video_frame() + 1) && f.eyes == EYES_LEFT) {
295                 return true;
296         }
297
298         return false;
299 }
300
301 void
302 Writer::thread ()
303 try
304 {
305         while (true)
306         {
307                 boost::mutex::scoped_lock lock (_state_mutex);
308
309                 while (true) {
310
311                         if (_finish || _queued_full_in_memory > _maximum_frames_in_memory || have_sequenced_image_at_queue_head ()) {
312                                 /* We've got something to do: go and do it */
313                                 break;
314                         }
315
316                         /* Nothing to do: wait until something happens which may indicate that we do */
317                         LOG_TIMING (N_("writer-sleep queue=%1"), _queue.size());
318                         _empty_condition.wait (lock);
319                         LOG_TIMING (N_("writer-wake queue=%1"), _queue.size());
320                 }
321
322                 if (_finish && _queue.empty()) {
323                         return;
324                 }
325
326                 /* We stop here if we have been asked to finish, and if either the queue
327                    is empty or we do not have a sequenced image at its head (if this is the
328                    case we will never terminate as no new frames will be sent once
329                    _finish is true).
330                 */
331                 if (_finish && (!have_sequenced_image_at_queue_head() || _queue.empty())) {
332                         /* (Hopefully temporarily) log anything that was not written */
333                         if (!_queue.empty() && !have_sequenced_image_at_queue_head()) {
334                                 LOG_WARNING (N_("Finishing writer with a left-over queue of %1:"), _queue.size());
335                                 for (list<QueueItem>::const_iterator i = _queue.begin(); i != _queue.end(); ++i) {
336                                         if (i->type == QueueItem::FULL) {
337                                                 LOG_WARNING (N_("- type FULL, frame %1, eyes %2"), i->frame, (int) i->eyes);
338                                         } else {
339                                                 LOG_WARNING (N_("- type FAKE, size %1, frame %2, eyes %3"), i->size, i->frame, (int) i->eyes);
340                                         }
341                                 }
342                         }
343                         return;
344                 }
345
346                 /* Write any frames that we can write; i.e. those that are in sequence. */
347                 while (have_sequenced_image_at_queue_head ()) {
348                         QueueItem qi = _queue.front ();
349                         _queue.pop_front ();
350                         if (qi.type == QueueItem::FULL && qi.encoded) {
351                                 --_queued_full_in_memory;
352                         }
353
354                         lock.unlock ();
355
356                         ReelWriter& reel = _reels[qi.reel];
357
358                         switch (qi.type) {
359                         case QueueItem::FULL:
360                                 LOG_DEBUG_ENCODE (N_("Writer FULL-writes %1 (%2)"), qi.frame, (int) qi.eyes);
361                                 if (!qi.encoded) {
362                                         qi.encoded = Data (_film->j2c_path (qi.reel, qi.frame, qi.eyes, false));
363                                 }
364                                 reel.write (qi.encoded, qi.frame, qi.eyes);
365                                 ++_full_written;
366                                 break;
367                         case QueueItem::FAKE:
368                                 LOG_DEBUG_ENCODE (N_("Writer FAKE-writes %1"), qi.frame);
369                                 reel.fake_write (qi.frame, qi.eyes, qi.size);
370                                 ++_fake_written;
371                                 break;
372                         case QueueItem::REPEAT:
373                                 LOG_DEBUG_ENCODE (N_("Writer REPEAT-writes %1"), qi.frame);
374                                 reel.repeat_write (qi.frame, qi.eyes);
375                                 ++_repeat_written;
376                                 break;
377                         }
378
379                         lock.lock ();
380                 }
381
382                 while (_queued_full_in_memory > _maximum_frames_in_memory) {
383                         /* Too many frames in memory which can't yet be written to the stream.
384                            Write some FULL frames to disk.
385                         */
386
387                         /* Find one from the back of the queue */
388                         _queue.sort ();
389                         list<QueueItem>::reverse_iterator i = _queue.rbegin ();
390                         while (i != _queue.rend() && (i->type != QueueItem::FULL || !i->encoded)) {
391                                 ++i;
392                         }
393
394                         DCPOMATIC_ASSERT (i != _queue.rend());
395                         ++_pushed_to_disk;
396                         /* For the log message below */
397                         int const awaiting = _reels[_queue.front().reel].last_written_video_frame();
398                         lock.unlock ();
399
400                         /* i is valid here, even though we don't hold a lock on the mutex,
401                            since list iterators are unaffected by insertion and only this
402                            thread could erase the last item in the list.
403                         */
404
405                         LOG_GENERAL ("Writer full; pushes %1 to disk while awaiting %2", i->frame, awaiting);
406
407                         i->encoded->write_via_temp (
408                                 _film->j2c_path (i->reel, i->frame, i->eyes, true),
409                                 _film->j2c_path (i->reel, i->frame, i->eyes, false)
410                                 );
411
412                         lock.lock ();
413                         i->encoded.reset ();
414                         --_queued_full_in_memory;
415                 }
416
417                 /* The queue has probably just gone down a bit; notify anything wait()ing on _full_condition */
418                 _full_condition.notify_all ();
419         }
420 }
421 catch (...)
422 {
423         store_current ();
424 }
425
426 void
427 Writer::terminate_thread (bool can_throw)
428 {
429         boost::mutex::scoped_lock lock (_state_mutex);
430         if (_thread == 0) {
431                 return;
432         }
433
434         _finish = true;
435         _empty_condition.notify_all ();
436         _full_condition.notify_all ();
437         lock.unlock ();
438
439         if (_thread->joinable ()) {
440                 _thread->join ();
441         }
442
443         if (can_throw) {
444                 rethrow ();
445         }
446
447         delete _thread;
448         _thread = 0;
449 }
450
451 void
452 Writer::finish ()
453 {
454         if (!_thread) {
455                 return;
456         }
457
458         LOG_GENERAL_NC ("Terminating writer thread");
459
460         terminate_thread (true);
461
462         LOG_GENERAL_NC ("Finishing ReelWriters");
463
464         BOOST_FOREACH (ReelWriter& i, _reels) {
465                 i.finish ();
466         }
467
468         LOG_GENERAL_NC ("Writing XML");
469
470         dcp::DCP dcp (_film->dir (_film->dcp_name()));
471
472         shared_ptr<dcp::CPL> cpl (
473                 new dcp::CPL (
474                         _film->dcp_name(),
475                         _film->dcp_content_type()->libdcp_kind ()
476                         )
477                 );
478
479         dcp.add (cpl);
480
481         /* Calculate digests for each reel in parallel */
482
483         shared_ptr<Job> job = _job.lock ();
484         job->sub (_("Computing digests"));
485
486         boost::asio::io_service service;
487         boost::thread_group pool;
488
489         shared_ptr<boost::asio::io_service::work> work (new boost::asio::io_service::work (service));
490
491         int const threads = max (1, Config::instance()->master_encoding_threads ());
492
493         for (int i = 0; i < threads; ++i) {
494                 pool.create_thread (boost::bind (&boost::asio::io_service::run, &service));
495         }
496
497         BOOST_FOREACH (ReelWriter& i, _reels) {
498                 boost::function<void (float)> set_progress = boost::bind (&Writer::set_digest_progress, this, job.get(), _1);
499                 service.post (boost::bind (&ReelWriter::calculate_digests, &i, set_progress));
500         }
501
502         work.reset ();
503         pool.join_all ();
504         service.stop ();
505
506         /* Add reels to CPL */
507
508         BOOST_FOREACH (ReelWriter& i, _reels) {
509                 cpl->add (i.create_reel (_reel_assets, _fonts));
510         }
511
512         dcp::XMLMetadata meta;
513         meta.annotation_text = cpl->annotation_text ();
514         meta.creator = Config::instance()->dcp_creator ();
515         if (meta.creator.empty ()) {
516                 meta.creator = String::compose ("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit);
517         }
518         meta.issuer = Config::instance()->dcp_issuer ();
519         if (meta.issuer.empty ()) {
520                 meta.issuer = String::compose ("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit);
521         }
522         meta.set_issue_date_now ();
523
524         cpl->set_metadata (meta);
525
526         shared_ptr<const dcp::CertificateChain> signer;
527         if (_film->is_signed ()) {
528                 signer = Config::instance()->signer_chain ();
529                 /* We did check earlier, but check again here to be on the safe side */
530                 string reason;
531                 if (!signer->valid (&reason)) {
532                         throw InvalidSignerError (reason);
533                 }
534         }
535
536         dcp.write_xml (_film->interop () ? dcp::INTEROP : dcp::SMPTE, meta, signer, Config::instance()->dcp_metadata_filename_format());
537
538         LOG_GENERAL (
539                 N_("Wrote %1 FULL, %2 FAKE, %3 REPEAT, %4 pushed to disk"), _full_written, _fake_written, _repeat_written, _pushed_to_disk
540                 );
541
542         write_cover_sheet ();
543 }
544
545 void
546 Writer::write_cover_sheet ()
547 {
548         boost::filesystem::path const cover = _film->file ("COVER_SHEET.txt");
549         FILE* f = fopen_boost (cover, "w");
550         if (!f) {
551                 throw OpenFileError (cover, errno, false);
552         }
553
554         string text = Config::instance()->cover_sheet ();
555         boost::algorithm::replace_all (text, "$CPL_NAME", _film->name());
556         boost::algorithm::replace_all (text, "$TYPE", _film->dcp_content_type()->pretty_name());
557         boost::algorithm::replace_all (text, "$CONTAINER", _film->container()->nickname());
558         boost::algorithm::replace_all (text, "$AUDIO_LANGUAGE", _film->isdcf_metadata().audio_language);
559         boost::algorithm::replace_all (text, "$SUBTITLE_LANGUAGE", _film->isdcf_metadata().subtitle_language);
560
561         boost::uintmax_t size = 0;
562         for (
563                 boost::filesystem::recursive_directory_iterator i = boost::filesystem::recursive_directory_iterator(_film->dir(_film->dcp_name()));
564                 i != boost::filesystem::recursive_directory_iterator();
565                 ++i) {
566                 size += boost::filesystem::file_size (i->path ());
567         }
568
569         if (size > (1000000000L)) {
570                 boost::algorithm::replace_all (text, "$SIZE", String::compose ("%1GB", dcp::locale_convert<string> (size / 1000000000.0, 1, true)));
571         } else {
572                 boost::algorithm::replace_all (text, "$SIZE", String::compose ("%1MB", dcp::locale_convert<string> (size / 1000000.0, 1, true)));
573         }
574
575         pair<int, int> ch = audio_channel_types (_film->mapped_audio_channels(), _film->audio_channels());
576         string description = String::compose("%1.%2", ch.first, ch.second);
577
578         if (description == "0.0") {
579                 description = _("None");
580         } else if (description == "1.0") {
581                 description = _("Mono");
582         } else if (description == "2.0") {
583                 description = _("Stereo");
584         }
585         boost::algorithm::replace_all (text, "$AUDIO", description);
586
587         int h, m, s, fr;
588         _film->length().split (_film->video_frame_rate(), h, m, s, fr);
589         string length;
590         if (h == 0 && m == 0) {
591                 length = String::compose("%1s", s);
592         } else if (h == 0 && m > 0) {
593                 length = String::compose("%1m%2s", m, s);
594         } else if (h > 0 && m > 0) {
595                 length = String::compose("%1h%2m%3s", h, m, s);
596         }
597
598         boost::algorithm::replace_all (text, "$LENGTH", length);
599
600         fwrite (text.c_str(), 1, text.length(), f);
601         fclose (f);
602 }
603
604 /** @param frame Frame index within the whole DCP.
605  *  @return true if we can fake-write this frame.
606  */
607 bool
608 Writer::can_fake_write (Frame frame) const
609 {
610         /* We have to do a proper write of the first frame so that we can set up the JPEG2000
611            parameters in the asset writer.
612         */
613
614         ReelWriter const & reel = _reels[video_reel(frame)];
615
616         /* Make frame relative to the start of the reel */
617         frame -= reel.start ();
618         return (frame != 0 && frame < reel.first_nonexistant_frame());
619 }
620
621 void
622 Writer::write (PlayerSubtitles subs, DCPTimePeriod period)
623 {
624         if (subs.text.empty ()) {
625                 return;
626         }
627
628         if (_subtitle_reel->period().to <= period.from) {
629                 ++_subtitle_reel;
630         }
631
632         _subtitle_reel->write (subs);
633 }
634
635 void
636 Writer::write (list<shared_ptr<Font> > fonts)
637 {
638         /* Just keep a list of unique fonts and we'll deal with them in ::finish */
639
640         BOOST_FOREACH (shared_ptr<Font> i, fonts) {
641                 bool got = false;
642                 BOOST_FOREACH (shared_ptr<Font> j, _fonts) {
643                         if (*i == *j) {
644                                 got = true;
645                         }
646                 }
647
648                 if (!got) {
649                         _fonts.push_back (i);
650                 }
651         }
652 }
653
654 bool
655 operator< (QueueItem const & a, QueueItem const & b)
656 {
657         if (a.reel != b.reel) {
658                 return a.reel < b.reel;
659         }
660
661         if (a.frame != b.frame) {
662                 return a.frame < b.frame;
663         }
664
665         return static_cast<int> (a.eyes) < static_cast<int> (b.eyes);
666 }
667
668 bool
669 operator== (QueueItem const & a, QueueItem const & b)
670 {
671         return a.reel == b.reel && a.frame == b.frame && a.eyes == b.eyes;
672 }
673
674 void
675 Writer::set_encoder_threads (int threads)
676 {
677         /* I think the scaling factor here should be the ratio of the longest frame
678            encode time to the shortest; if the thread count is T, longest time is L
679            and the shortest time S we could encode L/S frames per thread whilst waiting
680            for the L frame to encode so we might have to store LT/S frames.
681
682            However we don't want to use too much memory, so keep it a bit lower than we'd
683            perhaps like.  A J2K frame is typically about 1Mb so 3 here will mean we could
684            use about 240Mb with 72 encoding threads.
685         */
686         _maximum_frames_in_memory = lrint (threads * 3);
687 }
688
689 void
690 Writer::write (ReferencedReelAsset asset)
691 {
692         _reel_assets.push_back (asset);
693 }
694
695 size_t
696 Writer::video_reel (int frame) const
697 {
698         DCPTime t = DCPTime::from_frames (frame, _film->video_frame_rate ());
699         size_t i = 0;
700         while (i < _reels.size() && !_reels[i].period().contains (t)) {
701                 ++i;
702         }
703
704         DCPOMATIC_ASSERT (i < _reels.size ());
705         return i;
706 }
707
708 void
709 Writer::set_digest_progress (Job* job, float progress)
710 {
711         /* I believe this is thread-safe */
712         _digest_progresses[boost::this_thread::get_id()] = progress;
713
714         boost::mutex::scoped_lock lm (_digest_progresses_mutex);
715         float min_progress = FLT_MAX;
716         for (map<boost::thread::id, float>::const_iterator i = _digest_progresses.begin(); i != _digest_progresses.end(); ++i) {
717                 min_progress = min (min_progress, i->second);
718         }
719
720         job->set_progress (min_progress);
721 }