summaryrefslogtreecommitdiff
path: root/src/sound_asset_writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-28 23:27:23 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-28 23:27:23 +0000
commit6db8817ab5c9387dc6528f88d1f1a88c3da0fea5 (patch)
tree03303b686665dfdf2780332b899e59ee26979ccc /src/sound_asset_writer.cc
parentc9717810952874f38c58b526abf4875abf38534c (diff)
Use a HMAC context to write HMAC stuff to encrypted MXFs.
Diffstat (limited to 'src/sound_asset_writer.cc')
-rw-r--r--src/sound_asset_writer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset_writer.cc b/src/sound_asset_writer.cc
index f1e17615..a716b654 100644
--- a/src/sound_asset_writer.cc
+++ b/src/sound_asset_writer.cc
@@ -37,7 +37,7 @@ struct SoundAssetWriter::ASDCPState
};
SoundAssetWriter::SoundAssetWriter (SoundAsset* asset, boost::filesystem::path file, Standard standard)
- : AssetWriter (asset, file)
+ : AssetWriter (asset, file, standard)
, _state (new SoundAssetWriter::ASDCPState)
, _sound_asset (asset)
, _frame_buffer_offset (0)
@@ -105,7 +105,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, 0);
+ ASDCP::Result_t const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _encryption_context, _hmac_context);
if (ASDCP_FAILURE (r)) {
boost::throw_exception (MiscError (String::compose ("could not write audio MXF frame (%1)", int (r))));
}