X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fhints.h;h=6553593a06e761da7b908ce1949f5dc3fc06fa58;hp=81a37a3c453adb10aabfc462604b393ac3a4d2e7;hb=cd6c6a693f19fcaa6c75ed60f48a54a8cae51352;hpb=39fb8198febde1937019db1c300ec363aab5aa56 diff --git a/src/lib/hints.h b/src/lib/hints.h index 81a37a3c4..6553593a0 100644 --- a/src/lib/hints.h +++ b/src/lib/hints.h @@ -51,6 +51,9 @@ public: /* For tests only */ void join (); + void disable_audio_analysis () { + _disable_audio_analysis = true; + } private: friend struct hint_subtitle_too_early; @@ -78,6 +81,7 @@ private: void check_ffec_and_ffmc_in_smpte_feature (); void check_out_of_range_markers (); void check_text_languages (); + void check_audio_language (); boost::thread _thread; /** This is used to make a partial DCP containing only the subtitles and closed captions that @@ -102,4 +106,6 @@ private: boost::optional _last_subtitle; boost::atomic _stop; + + bool _disable_audio_analysis = false; };