Speed up hints tests by not running a pointless audio analysis.
[dcpomatic.git] / src / lib / hints.h
index 2a5e8d4a024f4ba28148c7a42a80b2bcd61d3c2e..6553593a06e761da7b908ce1949f5dc3fc06fa58 100644 (file)
@@ -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;
@@ -103,4 +106,6 @@ private:
        boost::optional<dcpomatic::DCPTimePeriod> _last_subtitle;
 
        boost::atomic<bool> _stop;
+
+       bool _disable_audio_analysis = false;
 };