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