From 28111007e2e6fd62f5810be780706ae1618bd33f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 21 Jan 2021 02:44:11 +0100 Subject: Adapt for libdcp use of enum class. --- src/lib/create_cli.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/create_cli.cc') diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc index 7acd5756f..de26a7412 100644 --- a/src/lib/create_cli.cc +++ b/src/lib/create_cli.cc @@ -79,7 +79,7 @@ CreateCLI::CreateCLI (int argc, char* argv[]) , dcp_content_type (0) , container_ratio (0) , still_length (10) - , standard (dcp::SMPTE) + , standard (dcp::Standard::SMPTE) , no_use_isdcf_name (false) , fourk (false) { @@ -192,7 +192,7 @@ CreateCLI::CreateCLI (int argc, char* argv[]) } if (standard_string == "interop") { - standard = dcp::INTEROP; + standard = dcp::Standard::INTEROP; } if (content.empty()) { -- cgit v1.2.3