summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-28 18:43:27 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-28 18:43:27 +0000
commit8e7d91ac8b945d66a65fc7b20249cd1c7796c7fa (patch)
tree8cab651afa0d57b99978e1ff472f5d19de4c0ec8 /src/lib/writer.cc
parentb1873c51b2e8265a01a8f0eced7fc3465f1677dc (diff)
Write more extensive information about frames, and hash the MXF packet rather than the J2K data.
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc36
1 files changed, 23 insertions, 13 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index 3ec88860a..7f338e238 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -136,12 +136,12 @@ Writer::thread ()
lock.unlock ();
_film->log()->log (String::compose ("Writer writes %1 to MXF", encoded.second));
if (encoded.first) {
- _picture_asset_writer->write (encoded.first->data(), encoded.first->size());
- encoded.first->write_hash (_film, encoded.second);
+ libdcp::FrameInfo const fin = _picture_asset_writer->write (encoded.first->data(), encoded.first->size());
+ encoded.first->write_info (_film, encoded.second, fin);
_last_written = encoded.first;
} else {
- _picture_asset_writer->write (_last_written->data(), _last_written->size());
- _last_written->write_hash (_film, encoded.second);
+ libdcp::FrameInfo const fin = _picture_asset_writer->write (_last_written->data(), _last_written->size());
+ _last_written->write_info (_film, encoded.second, fin);
}
lock.lock ();
@@ -279,18 +279,26 @@ Writer::check_existing_picture_mxf ()
return;
}
- libdcp::MonoPictureAsset existing (_film->video_mxf_dir(), _film->video_mxf_filename());
+ /* Try to open the picture MXF */
+ FILE* mxf = fopen (p.string().c_str(), "rb");
+ if (!mxf) {
+ return;
+ }
- while (_first_nonexistant_frame < existing.intrinsic_duration()) {
+ while (_first_nonexistant_frame < _film->dcp_intrinsic_duration ()) {
- shared_ptr<const libdcp::MonoPictureFrame> f = existing.get_frame (_first_nonexistant_frame);
- string const existing_hash = md5_digest (f->j2k_data(), f->j2k_size());
-
- ifstream hf (_film->hash_path (_first_nonexistant_frame).c_str ());
- string reference_hash;
- hf >> reference_hash;
+ /* Read the frame info as written */
+ ifstream ifi (_film->info_path (_first_nonexistant_frame).c_str());
+ libdcp::FrameInfo info (ifi);
- if (existing_hash != reference_hash) {
+ /* Read the data from the MXF and hash it */
+ fseek (mxf, info.offset, SEEK_SET);
+ uint8_t* data = new uint8_t[info.length];
+ fread (data, 1, info.length, mxf);
+ string const existing_hash = md5_digest (data, info.length);
+ delete[] data;
+
+ if (existing_hash != info.hash) {
cout << "frame " << _first_nonexistant_frame << " failed hash check.\n";
break;
}
@@ -298,5 +306,7 @@ Writer::check_existing_picture_mxf ()
cout << "frame " << _first_nonexistant_frame << " ok.\n";
++_first_nonexistant_frame;
}
+
+ fclose (mxf);
}