42 #include "compose.hpp"
46 #include "filesystem.h"
47 #include <asdcp/AS_DCP.h>
52 using std::shared_ptr;
56 struct AtmosAssetWriter::ASDCPState
58 ASDCP::ATMOS::MXFWriter mxf_writer;
59 ASDCP::DCData::FrameBuffer frame_buffer;
60 ASDCP::WriterInfo writer_info;
61 ASDCP::ATMOS::AtmosDescriptor desc;
65 AtmosAssetWriter::AtmosAssetWriter (
AtmosAsset* asset, boost::filesystem::path file)
70 _state->desc.EditRate = ASDCP::Rational (_asset->edit_rate().numerator, _asset->edit_rate().denominator);
71 _state->desc.FirstFrame = _asset->first_frame ();
72 _state->desc.MaxChannelCount = _asset->max_channel_count ();
73 _state->desc.MaxObjectCount = _asset->max_object_count ();
76 Kumu::hex2bin (_asset->atmos_id().c_str(), _state->desc.AtmosID, ASDCP::UUIDlen, &c);
77 DCP_ASSERT (c == ASDCP::UUIDlen);
79 _state->desc.AtmosVersion = _asset->atmos_version ();
81 _asset->fill_writer_info (&_state->writer_info, _asset->id());
86 AtmosAssetWriter::write (shared_ptr<const AtmosFrame> frame)
88 write (frame->data(), frame->size());
93 AtmosAssetWriter::write (uint8_t
const * data,
int size)
98 auto r = _state->mxf_writer.OpenWrite(dcp::filesystem::fix_long_path(
_file).
string().c_str(), _state->writer_info, _state->desc);
99 if (ASDCP_FAILURE(r)) {
100 boost::throw_exception (
FileError (
"could not open atmos MXF for writing",
_file.string(), r));
107 _state->frame_buffer.Capacity (size);
108 _state->frame_buffer.Size (size);
109 memcpy (_state->frame_buffer.Data(), data, size);
111 auto const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _crypto_context->context(), _crypto_context->hmac());
112 if (ASDCP_FAILURE(r)) {
113 boost::throw_exception (
MiscError(String::compose(
"could not write atmos MXF frame (%1)",
static_cast<int>(r))));
123 if (
_started && ASDCP_FAILURE(_state->mxf_writer.Finalize())) {
124 boost::throw_exception (
MiscError(
"could not finalise atmos MXF"));
Parent class for classes which can write MXF-based assets.
boost::filesystem::path _file
void set_file(boost::filesystem::path file) const
A helper class for writing to AtmosAssets.
An asset of Dolby ATMOS sound data.
An exception related to a file.
A miscellaneous exception.
Exceptions thrown by libdcp.
Namespace for everything in libdcp.