diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-07-27 14:33:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-07-27 14:33:03 +0100 |
| commit | 8c902030af1e2511c53d3738785eb7890b882a45 (patch) | |
| tree | df10201b7e7c326e7f40abd5b70cab47c4ddc6ea /src/lib/reel_writer.h | |
| parent | 5c17e2ab63359ecbb1a907308dc0a2e6d270d4da (diff) | |
Small tidy-up to member variable.
Diffstat (limited to 'src/lib/reel_writer.h')
| -rw-r--r-- | src/lib/reel_writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/reel_writer.h b/src/lib/reel_writer.h index 274f62b9f..edf6c081e 100644 --- a/src/lib/reel_writer.h +++ b/src/lib/reel_writer.h @@ -94,13 +94,13 @@ private: void write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const; long frame_info_position (Frame frame, Eyes eyes) const; - void check_existing_picture_asset (); - bool existing_picture_frame_ok (FILE* asset_file, FILE* info_file) const; + Frame check_existing_picture_asset (); + bool existing_picture_frame_ok (FILE* asset_file, FILE* info_file, Frame frame) const; boost::shared_ptr<const Film> _film; DCPTimePeriod _period; - /** the first frame index that does not already exist in our MXF */ + /** the first picture frame index that does not already exist in our MXF */ int _first_nonexistant_frame; /** the data of the last written frame, if there is one */ boost::optional<dcp::Data> _last_written[EYES_COUNT]; |
