summaryrefslogtreecommitdiff
path: root/src/sound_asset_writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-13 23:35:39 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-13 23:35:39 +0100
commit563dbf02e9c7ab0066bcebbcde6c662df845695a (patch)
treec34ecf8b2fd76b1cbd8531b2a35d0bfa5fb3aa0e /src/sound_asset_writer.cc
parent11777d1eacac733dbfc5a7eef9337458a922f63e (diff)
Enable encryption of SMPTE subtitles.
Separate out EncryptionContext class to use in SMPTESubtitleAsset::write().
Diffstat (limited to 'src/sound_asset_writer.cc')
-rw-r--r--src/sound_asset_writer.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sound_asset_writer.cc b/src/sound_asset_writer.cc
index b0d7bc7d..84ed7787 100644
--- a/src/sound_asset_writer.cc
+++ b/src/sound_asset_writer.cc
@@ -36,6 +36,7 @@
#include "exceptions.h"
#include "dcp_assert.h"
#include "compose.hpp"
+#include "encryption_context.h"
#include <asdcp/AS_DCP.h>
using std::min;
@@ -127,7 +128,7 @@ SoundAssetWriter::write (float const * const * data, int frames)
void
SoundAssetWriter::write_current_frame ()
{
- ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context, _hmac_context);
+ ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context->encryption(), _encryption_context->hmac());
if (ASDCP_FAILURE (r)) {
boost::throw_exception (MiscError (String::compose ("could not write audio MXF frame (%1)", int (r))));
}