summaryrefslogtreecommitdiff
path: root/src/mxf_asset.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-18 20:25:02 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-18 20:25:02 +0000
commit2489080f9a5d2891da0fc313b2c0ac1450a630ad (patch)
tree2f4fe733439db89943eb208713f034eb7df12b65 /src/mxf_asset.cc
parentc289685296d58228df0a88354e966105b242c915 (diff)
Allow incremental writing of picture MXFs.
Diffstat (limited to 'src/mxf_asset.cc')
-rw-r--r--src/mxf_asset.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mxf_asset.cc b/src/mxf_asset.cc
index 77e4b098..af3c74dc 100644
--- a/src/mxf_asset.cc
+++ b/src/mxf_asset.cc
@@ -60,7 +60,7 @@ MXFAsset::set_duration (int d)
}
void
-MXFAsset::fill_writer_info (ASDCP::WriterInfo* writer_info) const
+MXFAsset::fill_writer_info (ASDCP::WriterInfo* writer_info, string uuid)
{
writer_info->ProductVersion = Metadata::instance()->product_version;
writer_info->CompanyName = Metadata::instance()->company_name;
@@ -68,7 +68,7 @@ MXFAsset::fill_writer_info (ASDCP::WriterInfo* writer_info) const
writer_info->LabelSetType = ASDCP::LS_MXF_SMPTE;
unsigned int c;
- Kumu::hex2bin (_uuid.c_str(), writer_info->AssetUUID, Kumu::UUID_Length, &c);
+ Kumu::hex2bin (uuid.c_str(), writer_info->AssetUUID, Kumu::UUID_Length, &c);
assert (c == Kumu::UUID_Length);
}