Setup fast state of decoder after creation.
[dcpomatic.git] / src / lib / decoder.cc
index 3cadcca47198c1c79c801585b425e04971146bca..976f97fa99f89bb190fbfa0176860d0f9a36c6ee 100644 (file)
@@ -101,3 +101,11 @@ Decoder::film () const
        DCPOMATIC_ASSERT (f);
        return f;
 }
+
+void
+Decoder::set_fast (bool fast)
+{
+       if (audio) {
+               audio->set_fast (fast);
+       }
+}