summaryrefslogtreecommitdiff
path: root/src/lib/reel_writer.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-26 22:43:10 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-21 23:18:23 +0200
commitf7518583f90a866a07d8069a78bebcea82b2b248 (patch)
tree92af4f01ff048248fcf7eeb6e65d7d8408d89807 /src/lib/reel_writer.h
parentfa15dc1a375e13d2047a857e5aef202179eec0d4 (diff)
Extract frame info read/write to new class.
Diffstat (limited to 'src/lib/reel_writer.h')
-rw-r--r--src/lib/reel_writer.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lib/reel_writer.h b/src/lib/reel_writer.h
index 6f47c6740..30abdd563 100644
--- a/src/lib/reel_writer.h
+++ b/src/lib/reel_writer.h
@@ -95,14 +95,10 @@ public:
return _first_nonexistent_frame;
}
- dcp::FrameInfo read_frame_info (std::shared_ptr<InfoFileHandle> info, Frame frame, Eyes eyes) const;
-
private:
friend struct ::write_frame_info_test;
- void write_frame_info (Frame frame, Eyes eyes, dcp::FrameInfo info) const;
- long frame_info_position (Frame frame, Eyes eyes) const;
Frame check_existing_picture_asset (boost::filesystem::path asset);
bool existing_picture_frame_ok (dcp::File& asset_file, std::shared_ptr<InfoFileHandle> info_file, Frame frame) const;
std::shared_ptr<dcp::SubtitleAsset> empty_text_asset (TextType type, boost::optional<DCPTextTrack> track, bool with_dummy) const;
@@ -146,6 +142,4 @@ private:
std::shared_ptr<dcp::AtmosAssetWriter> _atmos_asset_writer;
mutable FontMetrics _font_metrics;
-
- static int const _info_size;
};