Fix erroneous reports of unresolved assets when checking OV/VF pairs.
[libdcp.git] / src / atmos_asset_writer.cc
index 60529a2c6398d3b1b0b426ed5e0c157db036d9a7..07d310f65867bd78e1918e4cbe8bd8adb6ca307d 100644 (file)
@@ -36,7 +36,7 @@
 #include "exceptions.h"
 #include "dcp_assert.h"
 #include "compose.hpp"
-#include "encryption_context.h"
+#include "crypto_context.h"
 #include <asdcp/AS_DCP.h>
 
 using std::min;
@@ -89,7 +89,7 @@ AtmosAssetWriter::write (uint8_t const * data, int size)
        _state->frame_buffer.Size (size);
        memcpy (_state->frame_buffer.Data(), data, size);
 
-       ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context->encryption(), _encryption_context->hmac());
+       ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _crypto_context->context(), _crypto_context->hmac());
        if (ASDCP_FAILURE (r)) {
                boost::throw_exception (MiscError (String::compose ("could not write atmos MXF frame (%1)", int (r))));
        }