X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fwriter.h;h=1ae761dea83656073d4d03abb45c1ef6b8a9e5f7;hb=ff639b3cf30afcc097bfd21d39c8d15f466cadd6;hp=1e25c3bdf644d455434622e761629af9fcc3cb90;hpb=8963f0007af1a312017b9627c18b82ec2a577591;p=dcpomatic.git diff --git a/src/lib/writer.h b/src/lib/writer.h index 1e25c3bdf..1ae761dea 100644 --- a/src/lib/writer.h +++ b/src/lib/writer.h @@ -25,10 +25,12 @@ #include "atmos_metadata.h" -#include "types.h" -#include "player_text.h" -#include "exception_store.h" #include "dcp_text_track.h" +#include "dcpomatic_time.h" +#include "exception_store.h" +#include "font_id_map.h" +#include "player_text.h" +#include "types.h" #include "weak_film.h" #include #include @@ -40,15 +42,14 @@ namespace dcp { class Data; } -namespace dcpomatic { - class FontData; -} - -class Film; class AudioBuffers; +class Film; class Job; -class ReferencedReelAsset; class ReelWriter; +class ReferencedReelAsset; +struct writer_disambiguate_font_ids1; +struct writer_disambiguate_font_ids2; +struct writer_disambiguate_font_ids3; struct QueueItem @@ -114,7 +115,7 @@ public: void repeat (Frame, Eyes); void write (std::shared_ptr, dcpomatic::DCPTime time); void write (PlayerText text, TextType type, boost::optional, dcpomatic::DCPTimePeriod period); - void write (std::vector fonts); + void write (std::vector> fonts); void write (ReferencedReelAsset asset); void write (std::shared_ptr atmos, dcpomatic::DCPTime time, AtmosMetadata metadata); void finish (boost::filesystem::path output_dcp); @@ -122,6 +123,10 @@ public: void set_encoder_threads (int threads); private: + friend struct ::writer_disambiguate_font_ids1; + friend struct ::writer_disambiguate_font_ids2; + friend struct ::writer_disambiguate_font_ids3; + void thread (); void terminate_thread (bool); bool have_sequenced_image_at_queue_head (); @@ -200,7 +205,11 @@ private: std::list _reel_assets; - std::vector _fonts; + FontIdMap _fonts; + /** If we are given many fonts, but we're making an Interop DCP, we'll choose a single + * one that we'll use everywher. This is that chosen font. + */ + std::shared_ptr _chosen_interop_font; /** true if any reel has any subtitles */ bool _have_subtitles = false;