Don't write Markers to interop CPLs (#2537).
[dcpomatic.git] / src / lib / reel_writer.cc
index 062d3ca812441a984fbd79eeca912f3f58f89366..658de0a62953bbd5b498c8f58f09f9a7e198e8ae 100644 (file)
@@ -762,7 +762,9 @@ ReelWriter::create_reel (
                auto reel_picture_asset = create_reel_picture (reel, refs);
                duration = reel_picture_asset->actual_duration ();
                create_reel_sound (reel, refs);
-               create_reel_markers (reel);
+               if (!film()->interop()) {
+                       create_reel_markers(reel);
+               }
        }
 
        create_reel_text(reel, refs, duration, output_dcp, ensure_subtitles, ensure_closed_captions);