355fe5c3bfac1e1982f2135aa992245e125de50e
[dcpomatic.git] / src / lib / reel_writer.cc
1 /*
2     Copyright (C) 2012-2018 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 "reel_writer.h"
22 #include "film.h"
23 #include "cross.h"
24 #include "job.h"
25 #include "log.h"
26 #include "dcpomatic_log.h"
27 #include "digester.h"
28 #include "font.h"
29 #include "compose.hpp"
30 #include "audio_buffers.h"
31 #include "image.h"
32 #include <dcp/mono_picture_asset.h>
33 #include <dcp/stereo_picture_asset.h>
34 #include <dcp/sound_asset.h>
35 #include <dcp/sound_asset_writer.h>
36 #include <dcp/reel.h>
37 #include <dcp/reel_mono_picture_asset.h>
38 #include <dcp/reel_stereo_picture_asset.h>
39 #include <dcp/reel_sound_asset.h>
40 #include <dcp/reel_subtitle_asset.h>
41 #include <dcp/reel_closed_caption_asset.h>
42 #include <dcp/dcp.h>
43 #include <dcp/cpl.h>
44 #include <dcp/certificate_chain.h>
45 #include <dcp/interop_subtitle_asset.h>
46 #include <dcp/smpte_subtitle_asset.h>
47 #include <dcp/raw_convert.h>
48 #include <dcp/subtitle_image.h>
49 #include <boost/foreach.hpp>
50
51 #include "i18n.h"
52
53 using std::list;
54 using std::string;
55 using std::cout;
56 using std::map;
57 using boost::shared_ptr;
58 using boost::optional;
59 using boost::dynamic_pointer_cast;
60 using dcp::Data;
61 using dcp::raw_convert;
62
63 int const ReelWriter::_info_size = 48;
64
65 /** @param job Related job, or 0 */
66 ReelWriter::ReelWriter (
67         shared_ptr<const Film> film, DCPTimePeriod period, shared_ptr<Job> job, int reel_index, int reel_count, optional<string> content_summary
68         )
69         : _film (film)
70         , _period (period)
71         , _last_written_video_frame (-1)
72         , _last_written_eyes (EYES_RIGHT)
73         , _reel_index (reel_index)
74         , _reel_count (reel_count)
75         , _content_summary (content_summary)
76 {
77         /* Create our picture asset in a subdirectory, named according to those
78            film's parameters which affect the video output.  We will hard-link
79            it into the DCP later.
80         */
81
82         dcp::Standard const standard = _film->interop() ? dcp::INTEROP : dcp::SMPTE;
83
84         if (_film->three_d ()) {
85                 _picture_asset.reset (new dcp::StereoPictureAsset (dcp::Fraction (_film->video_frame_rate(), 1), standard));
86         } else {
87                 _picture_asset.reset (new dcp::MonoPictureAsset (dcp::Fraction (_film->video_frame_rate(), 1), standard));
88         }
89
90         _picture_asset->set_size (_film->frame_size ());
91
92         if (_film->encrypted ()) {
93                 _picture_asset->set_key (_film->key ());
94                 _picture_asset->set_context_id (_film->context_id ());
95         }
96
97         _picture_asset->set_file (
98                 _film->internal_video_asset_dir() / _film->internal_video_asset_filename(_period)
99                 );
100
101         if (job) {
102                 job->sub (_("Checking existing image data"));
103         }
104         _first_nonexistant_frame = check_existing_picture_asset ();
105
106         _picture_asset_writer = _picture_asset->start_write (
107                 _film->internal_video_asset_dir() / _film->internal_video_asset_filename(_period),
108                 _first_nonexistant_frame > 0
109                 );
110
111         if (_film->audio_channels ()) {
112                 _sound_asset.reset (
113                         new dcp::SoundAsset (dcp::Fraction (_film->video_frame_rate(), 1), _film->audio_frame_rate (), _film->audio_channels (), standard)
114                         );
115
116                 if (_film->encrypted ()) {
117                         _sound_asset->set_key (_film->key ());
118                 }
119
120                 DCPOMATIC_ASSERT (_film->directory());
121
122                 /* Write the sound asset into the film directory so that we leave the creation
123                    of the DCP directory until the last minute.
124                 */
125                 _sound_asset_writer = _sound_asset->start_write (
126                         _film->directory().get() / audio_asset_filename (_sound_asset, _reel_index, _reel_count, _content_summary)
127                         );
128         }
129 }
130
131 /** @param frame reel-relative frame */
132 void
133 ReelWriter::write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const
134 {
135         FILE* file = 0;
136         boost::filesystem::path info_file = _film->info_file (_period);
137
138         bool const read = boost::filesystem::exists (info_file);
139
140         if (read) {
141                 file = fopen_boost (info_file, "r+b");
142         } else {
143                 file = fopen_boost (info_file, "wb");
144         }
145
146         if (!file) {
147                 throw OpenFileError (info_file, errno, read ? OpenFileError::READ_WRITE : OpenFileError::WRITE);
148         }
149         dcpomatic_fseek (file, frame_info_position (frame, eyes), SEEK_SET);
150         checked_fwrite (&info.offset, sizeof (info.offset), file, info_file);
151         checked_fwrite (&info.size, sizeof (info.size), file, info_file);
152         checked_fwrite (info.hash.c_str(), info.hash.size(), file, info_file);
153         fclose (file);
154 }
155
156 dcp::FrameInfo
157 ReelWriter::read_frame_info (FILE* file, Frame frame, Eyes eyes) const
158 {
159         dcp::FrameInfo info;
160         dcpomatic_fseek (file, frame_info_position (frame, eyes), SEEK_SET);
161         checked_fread (&info.offset, sizeof(info.offset), file, _film->info_file(_period));
162         checked_fread (&info.size, sizeof(info.size), file, _film->info_file(_period));
163
164         char hash_buffer[33];
165         checked_fread (hash_buffer, 32, file, _film->info_file(_period));
166         hash_buffer[32] = '\0';
167         info.hash = hash_buffer;
168
169         return info;
170 }
171
172 long
173 ReelWriter::frame_info_position (Frame frame, Eyes eyes) const
174 {
175         switch (eyes) {
176         case EYES_BOTH:
177                 return frame * _info_size;
178         case EYES_LEFT:
179                 return frame * _info_size * 2;
180         case EYES_RIGHT:
181                 return frame * _info_size * 2 + _info_size;
182         default:
183                 DCPOMATIC_ASSERT (false);
184         }
185
186         DCPOMATIC_ASSERT (false);
187 }
188
189 Frame
190 ReelWriter::check_existing_picture_asset ()
191 {
192         DCPOMATIC_ASSERT (_picture_asset->file());
193         boost::filesystem::path asset = _picture_asset->file().get();
194
195         /* If there is an existing asset, break any hard links to it as we are about to change its contents
196            (if only by changing the IDs); see #1126.
197         */
198
199         if (boost::filesystem::exists(asset) && boost::filesystem::hard_link_count(asset) > 1) {
200                 boost::filesystem::copy_file (asset, asset.string() + ".tmp");
201                 boost::filesystem::remove (asset);
202                 boost::filesystem::rename (asset.string() + ".tmp", asset);
203         }
204
205         /* Try to open the existing asset */
206         FILE* asset_file = fopen_boost (asset, "rb");
207         if (!asset_file) {
208                 LOG_GENERAL ("Could not open existing asset at %1 (errno=%2)", asset.string(), errno);
209                 return 0;
210         } else {
211                 LOG_GENERAL ("Opened existing asset at %1", asset.string());
212         }
213
214         /* Offset of the last dcp::FrameInfo in the info file */
215         int const n = (boost::filesystem::file_size (_film->info_file(_period)) / _info_size) - 1;
216         LOG_GENERAL ("The last FI is %1; info file is %2, info size %3", n, boost::filesystem::file_size (_film->info_file(_period)), _info_size);
217
218         FILE* info_file = fopen_boost (_film->info_file(_period), "rb");
219         if (!info_file) {
220                 LOG_GENERAL_NC ("Could not open film info file");
221                 fclose (asset_file);
222                 return 0;
223         }
224
225         Frame first_nonexistant_frame;
226         if (_film->three_d ()) {
227                 /* Start looking at the last left frame */
228                 first_nonexistant_frame = n / 2;
229         } else {
230                 first_nonexistant_frame = n;
231         }
232
233         while (!existing_picture_frame_ok(asset_file, info_file, first_nonexistant_frame) && first_nonexistant_frame > 0) {
234                 --first_nonexistant_frame;
235         }
236
237         if (!_film->three_d() && first_nonexistant_frame > 0) {
238                 /* If we are doing 3D we might have found a good L frame with no R, so only
239                    do this if we're in 2D and we've just found a good B(oth) frame.
240                 */
241                 ++first_nonexistant_frame;
242         }
243
244         LOG_GENERAL ("Proceeding with first nonexistant frame %1", first_nonexistant_frame);
245
246         fclose (asset_file);
247         fclose (info_file);
248
249         return first_nonexistant_frame;
250 }
251
252 void
253 ReelWriter::write (optional<Data> encoded, Frame frame, Eyes eyes)
254 {
255         dcp::FrameInfo fin = _picture_asset_writer->write (encoded->data().get (), encoded->size());
256         write_frame_info (frame, eyes, fin);
257         _last_written[eyes] = encoded;
258         _last_written_video_frame = frame;
259         _last_written_eyes = eyes;
260 }
261
262 void
263 ReelWriter::fake_write (Frame frame, Eyes eyes, int size)
264 {
265         _picture_asset_writer->fake_write (size);
266         _last_written_video_frame = frame;
267         _last_written_eyes = eyes;
268 }
269
270 void
271 ReelWriter::repeat_write (Frame frame, Eyes eyes)
272 {
273         dcp::FrameInfo fin = _picture_asset_writer->write (
274                 _last_written[eyes]->data().get(),
275                 _last_written[eyes]->size()
276                 );
277         write_frame_info (frame, eyes, fin);
278         _last_written_video_frame = frame;
279         _last_written_eyes = eyes;
280 }
281
282 void
283 ReelWriter::finish ()
284 {
285         if (!_picture_asset_writer->finalize ()) {
286                 /* Nothing was written to the picture asset */
287                 LOG_GENERAL ("Nothing was written to reel %1 of %2", _reel_index, _reel_count);
288                 _picture_asset.reset ();
289         }
290
291         if (_sound_asset_writer && !_sound_asset_writer->finalize ()) {
292                 /* Nothing was written to the sound asset */
293                 _sound_asset.reset ();
294         }
295
296         /* Hard-link any video asset file into the DCP */
297         if (_picture_asset) {
298                 DCPOMATIC_ASSERT (_picture_asset->file());
299                 boost::filesystem::path video_from = _picture_asset->file().get();
300                 boost::filesystem::path video_to;
301                 video_to /= _film->dir (_film->dcp_name());
302                 video_to /= video_asset_filename (_picture_asset, _reel_index, _reel_count, _content_summary);
303
304                 boost::system::error_code ec;
305                 boost::filesystem::create_hard_link (video_from, video_to, ec);
306                 if (ec) {
307                         LOG_WARNING_NC ("Hard-link failed; copying instead");
308                         boost::filesystem::copy_file (video_from, video_to, ec);
309                         if (ec) {
310                                 LOG_ERROR ("Failed to copy video file from %1 to %2 (%3)", video_from.string(), video_to.string(), ec.message ());
311                                 throw FileError (ec.message(), video_from);
312                         }
313                 }
314
315                 _picture_asset->set_file (video_to);
316         }
317
318         /* Move the audio asset into the DCP */
319         if (_sound_asset) {
320                 boost::filesystem::path audio_to;
321                 audio_to /= _film->dir (_film->dcp_name ());
322                 string const aaf = audio_asset_filename (_sound_asset, _reel_index, _reel_count, _content_summary);
323                 audio_to /= aaf;
324
325                 boost::system::error_code ec;
326                 boost::filesystem::rename (_film->file (aaf), audio_to, ec);
327                 if (ec) {
328                         throw FileError (
329                                 String::compose (_("could not move audio asset into the DCP (%1)"), ec.value ()), aaf
330                                 );
331                 }
332
333                 _sound_asset->set_file (audio_to);
334         }
335 }
336
337 template <class T>
338 shared_ptr<T>
339 maybe_add_text (
340         shared_ptr<dcp::SubtitleAsset> asset,
341         int64_t picture_duration,
342         shared_ptr<dcp::Reel> reel,
343         list<ReferencedReelAsset> const & refs,
344         list<shared_ptr<Font> > const & fonts,
345         shared_ptr<const Film> film,
346         DCPTimePeriod period
347         )
348 {
349         Frame const period_duration = period.duration().frames_round(film->video_frame_rate());
350
351         shared_ptr<T> reel_asset;
352
353         if (asset) {
354                 boost::filesystem::path liberation_normal;
355                 try {
356                         liberation_normal = shared_path() / "LiberationSans-Regular.ttf";
357                         if (!boost::filesystem::exists (liberation_normal)) {
358                                 /* Hack for unit tests */
359                                 liberation_normal = shared_path() / "fonts" / "LiberationSans-Regular.ttf";
360                         }
361                 } catch (boost::filesystem::filesystem_error& e) {
362
363                 }
364
365                 if (!boost::filesystem::exists(liberation_normal)) {
366                         liberation_normal = "/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf";
367                 }
368
369                 /* Add the font to the subtitle content */
370                 BOOST_FOREACH (shared_ptr<Font> j, fonts) {
371                         asset->add_font (j->id(), j->file().get_value_or(liberation_normal));
372                 }
373
374                 if (dynamic_pointer_cast<dcp::InteropSubtitleAsset> (asset)) {
375                         boost::filesystem::path directory = film->dir (film->dcp_name ()) / asset->id ();
376                         boost::filesystem::create_directories (directory);
377                         asset->write (directory / ("sub_" + asset->id() + ".xml"));
378                 } else {
379                         /* All our assets should be the same length; use the picture asset length here
380                            as a reference to set the subtitle one.  We'll use the duration rather than
381                            the intrinsic duration; we don't care if the picture asset has been trimmed, we're
382                            just interested in its presentation length.
383                         */
384                         dynamic_pointer_cast<dcp::SMPTESubtitleAsset>(asset)->set_intrinsic_duration (picture_duration);
385
386                         asset->write (
387                                 film->dir(film->dcp_name()) / ("sub_" + asset->id() + ".mxf")
388                                 );
389                 }
390
391                 reel_asset.reset (
392                         new T (
393                                 asset,
394                                 dcp::Fraction (film->video_frame_rate(), 1),
395                                 picture_duration,
396                                 0
397                                 )
398                         );
399         } else {
400                 /* We don't have a subtitle asset of our own; hopefully we have one to reference */
401                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
402                         shared_ptr<T> k = dynamic_pointer_cast<T> (j.asset);
403                         if (k && j.period == period) {
404                                 reel_asset = k;
405                                 /* If we have a hash for this asset in the CPL, assume that it is correct */
406                                 if (k->hash()) {
407                                         k->asset_ref()->set_hash (k->hash().get());
408                                 }
409                         }
410                 }
411         }
412
413         if (reel_asset) {
414                 if (reel_asset->duration() != period_duration) {
415                         throw ProgrammingError (
416                                 __FILE__, __LINE__,
417                                 String::compose ("%1 vs %2", reel_asset->duration(), period_duration)
418                                 );
419                 }
420                 reel->add (reel_asset);
421         }
422
423         return reel_asset;
424 }
425
426 shared_ptr<dcp::Reel>
427 ReelWriter::create_reel (list<ReferencedReelAsset> const & refs, list<shared_ptr<Font> > const & fonts)
428 {
429         shared_ptr<dcp::Reel> reel (new dcp::Reel ());
430
431         shared_ptr<dcp::ReelPictureAsset> reel_picture_asset;
432
433         if (_picture_asset) {
434                 /* We have made a picture asset of our own.  Put it into the reel */
435                 shared_ptr<dcp::MonoPictureAsset> mono = dynamic_pointer_cast<dcp::MonoPictureAsset> (_picture_asset);
436                 if (mono) {
437                         reel_picture_asset.reset (new dcp::ReelMonoPictureAsset (mono, 0));
438                 }
439
440                 shared_ptr<dcp::StereoPictureAsset> stereo = dynamic_pointer_cast<dcp::StereoPictureAsset> (_picture_asset);
441                 if (stereo) {
442                         reel_picture_asset.reset (new dcp::ReelStereoPictureAsset (stereo, 0));
443                 }
444         } else {
445                 LOG_GENERAL ("no picture asset of our own; look through %1", refs.size());
446                 /* We don't have a picture asset of our own; hopefully we have one to reference */
447                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
448                         shared_ptr<dcp::ReelPictureAsset> k = dynamic_pointer_cast<dcp::ReelPictureAsset> (j.asset);
449                         if (k) {
450                                 LOG_GENERAL ("candidate picture asset period is %1-%2", j.period.from.get(), j.period.to.get());
451                         }
452                         if (k && j.period == _period) {
453                                 reel_picture_asset = k;
454                         }
455                 }
456         }
457
458         LOG_GENERAL ("create_reel for %1-%2; %3 of %4", _period.from.get(), _period.to.get(), _reel_index, _reel_count);
459
460         Frame const period_duration = _period.duration().frames_round(_film->video_frame_rate());
461
462         DCPOMATIC_ASSERT (reel_picture_asset);
463         if (reel_picture_asset->duration() != period_duration) {
464                 throw ProgrammingError (
465                         __FILE__, __LINE__,
466                         String::compose ("%1 vs %2", reel_picture_asset->duration(), period_duration)
467                         );
468         }
469         reel->add (reel_picture_asset);
470
471         /* If we have a hash for this asset in the CPL, assume that it is correct */
472         if (reel_picture_asset->hash()) {
473                 reel_picture_asset->asset_ref()->set_hash (reel_picture_asset->hash().get());
474         }
475
476         shared_ptr<dcp::ReelSoundAsset> reel_sound_asset;
477
478         if (_sound_asset) {
479                 /* We have made a sound asset of our own.  Put it into the reel */
480                 reel_sound_asset.reset (new dcp::ReelSoundAsset (_sound_asset, 0));
481         } else {
482                 /* We don't have a sound asset of our own; hopefully we have one to reference */
483                 BOOST_FOREACH (ReferencedReelAsset j, refs) {
484                         shared_ptr<dcp::ReelSoundAsset> k = dynamic_pointer_cast<dcp::ReelSoundAsset> (j.asset);
485                         if (k && j.period == _period) {
486                                 reel_sound_asset = k;
487                                 /* If we have a hash for this asset in the CPL, assume that it is correct */
488                                 if (k->hash()) {
489                                         k->asset_ref()->set_hash (k->hash().get());
490                                 }
491                         }
492                 }
493         }
494
495         DCPOMATIC_ASSERT (reel_sound_asset);
496         if (reel_sound_asset->duration() != period_duration) {
497                 LOG_ERROR (
498                         "Reel sound asset has length %1 but reel period is %2",
499                         reel_sound_asset->duration(),
500                         period_duration
501                         );
502                 if (reel_sound_asset->duration() != period_duration) {
503                         throw ProgrammingError (
504                                 __FILE__, __LINE__,
505                                 String::compose ("%1 vs %2", reel_sound_asset->duration(), period_duration)
506                                 );
507                 }
508
509         }
510         reel->add (reel_sound_asset);
511
512         maybe_add_text<dcp::ReelSubtitleAsset> (_subtitle_asset, reel_picture_asset->duration(), reel, refs, fonts, _film, _period);
513         for (map<DCPTextTrack, shared_ptr<dcp::SubtitleAsset> >::const_iterator i = _closed_caption_assets.begin(); i != _closed_caption_assets.end(); ++i) {
514                 shared_ptr<dcp::ReelClosedCaptionAsset> a = maybe_add_text<dcp::ReelClosedCaptionAsset> (
515                         i->second, reel_picture_asset->duration(), reel, refs, fonts, _film, _period
516                         );
517                 a->set_annotation_text (i->first.name);
518                 a->set_language (i->first.language);
519         }
520
521         return reel;
522 }
523
524 void
525 ReelWriter::calculate_digests (boost::function<void (float)> set_progress)
526 {
527         if (_picture_asset) {
528                 _picture_asset->hash (set_progress);
529         }
530
531         if (_sound_asset) {
532                 _sound_asset->hash (set_progress);
533         }
534 }
535
536 Frame
537 ReelWriter::start () const
538 {
539         return _period.from.frames_floor (_film->video_frame_rate());
540 }
541
542
543 void
544 ReelWriter::write (shared_ptr<const AudioBuffers> audio)
545 {
546         if (!_sound_asset_writer) {
547                 return;
548         }
549
550         DCPOMATIC_ASSERT (audio);
551         _sound_asset_writer->write (audio->data(), audio->frames());
552 }
553
554 void
555 ReelWriter::write (PlayerText subs, TextType type, optional<DCPTextTrack> track, DCPTimePeriod period)
556 {
557         shared_ptr<dcp::SubtitleAsset> asset;
558
559         switch (type) {
560         case TEXT_OPEN_SUBTITLE:
561                 asset = _subtitle_asset;
562                 break;
563         case TEXT_CLOSED_CAPTION:
564                 DCPOMATIC_ASSERT (track);
565                 asset = _closed_caption_assets[*track];
566                 break;
567         default:
568                 DCPOMATIC_ASSERT (false);
569         }
570
571         if (!asset) {
572                 string lang = _film->subtitle_language ();
573                 if (_film->interop ()) {
574                         shared_ptr<dcp::InteropSubtitleAsset> s (new dcp::InteropSubtitleAsset ());
575                         s->set_movie_title (_film->name ());
576                         if (type == TEXT_OPEN_SUBTITLE) {
577                                 s->set_language (lang.empty() ? "Unknown" : lang);
578                         } else {
579                                 s->set_language (track->language);
580                         }
581                         s->set_reel_number (raw_convert<string> (_reel_index + 1));
582                         asset = s;
583                 } else {
584                         shared_ptr<dcp::SMPTESubtitleAsset> s (new dcp::SMPTESubtitleAsset ());
585                         s->set_content_title_text (_film->name ());
586                         if (type == TEXT_OPEN_SUBTITLE && !lang.empty()) {
587                                 s->set_language (lang);
588                         } else {
589                                 s->set_language (track->language);
590                         }
591                         s->set_edit_rate (dcp::Fraction (_film->video_frame_rate (), 1));
592                         s->set_reel_number (_reel_index + 1);
593                         s->set_time_code_rate (_film->video_frame_rate ());
594                         s->set_start_time (dcp::Time ());
595                         if (_film->encrypted ()) {
596                                 s->set_key (_film->key ());
597                         }
598                         asset = s;
599                 }
600         }
601
602         switch (type) {
603         case TEXT_OPEN_SUBTITLE:
604                 _subtitle_asset = asset;
605                 break;
606         case TEXT_CLOSED_CAPTION:
607                 DCPOMATIC_ASSERT (track);
608                 _closed_caption_assets[*track] = asset;
609                 break;
610         default:
611                 DCPOMATIC_ASSERT (false);
612         }
613
614         BOOST_FOREACH (StringText i, subs.string) {
615                 /* XXX: couldn't / shouldn't we use period here rather than getting time from the subtitle? */
616                 i.set_in  (i.in()  - dcp::Time (_period.from.seconds(), i.in().tcr));
617                 i.set_out (i.out() - dcp::Time (_period.from.seconds(), i.out().tcr));
618                 asset->add (shared_ptr<dcp::Subtitle>(new dcp::SubtitleString(i)));
619         }
620
621         BOOST_FOREACH (BitmapText i, subs.bitmap) {
622                 asset->add (
623                         shared_ptr<dcp::Subtitle>(
624                                 new dcp::SubtitleImage(
625                                         i.image->as_png(),
626                                         dcp::Time(period.from.seconds() - _period.from.seconds(), _film->video_frame_rate()),
627                                         dcp::Time(period.to.seconds() - _period.from.seconds(), _film->video_frame_rate()),
628                                         i.rectangle.x, dcp::HALIGN_LEFT, i.rectangle.y, dcp::VALIGN_TOP,
629                                         dcp::Time(), dcp::Time()
630                                         )
631                                 )
632                         );
633         }
634 }
635
636 bool
637 ReelWriter::existing_picture_frame_ok (FILE* asset_file, FILE* info_file, Frame frame) const
638 {
639         LOG_GENERAL ("Checking existing picture frame %1", frame);
640
641         /* Read the data from the info file; for 3D we just check the left
642            frames until we find a good one.
643         */
644         dcp::FrameInfo const info = read_frame_info (info_file, frame, _film->three_d () ? EYES_LEFT : EYES_BOTH);
645
646         bool ok = true;
647
648         /* Read the data from the asset and hash it */
649         dcpomatic_fseek (asset_file, info.offset, SEEK_SET);
650         Data data (info.size);
651         size_t const read = fread (data.data().get(), 1, data.size(), asset_file);
652         LOG_GENERAL ("Read %1 bytes of asset data; wanted %2", read, info.size);
653         if (read != static_cast<size_t> (data.size ())) {
654                 LOG_GENERAL ("Existing frame %1 is incomplete", frame);
655                 ok = false;
656         } else {
657                 Digester digester;
658                 digester.add (data.data().get(), data.size());
659                 LOG_GENERAL ("Hash %1 vs %2", digester.get(), info.hash);
660                 if (digester.get() != info.hash) {
661                         LOG_GENERAL ("Existing frame %1 failed hash check", frame);
662                         ok = false;
663                 }
664         }
665
666         return ok;
667 }