diff options
Diffstat (limited to 'src/atmos_asset_writer.cc')
| -rw-r--r-- | src/atmos_asset_writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atmos_asset_writer.cc b/src/atmos_asset_writer.cc index 60529a2c..07d310f6 100644 --- a/src/atmos_asset_writer.cc +++ b/src/atmos_asset_writer.cc @@ -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)))); } |
