diff options
| author | jhurst <jhurst@cinecert.com> | 2006-01-06 07:19:32 +0000 |
|---|---|---|
| committer | jhurst <> | 2006-01-06 07:19:32 +0000 |
| commit | 6e23666cb6184999efc74577cfb1b524181ba5df (patch) | |
| tree | 0400f487b37da3e263f93af8afcfacb318d24087 /src/AS_DCP_MXF.cpp | |
| parent | a526fabf937848823b02d5486a6ec38f8442bb1c (diff) | |
bugfix in indexing
Diffstat (limited to 'src/AS_DCP_MXF.cpp')
| -rwxr-xr-x | src/AS_DCP_MXF.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AS_DCP_MXF.cpp b/src/AS_DCP_MXF.cpp index 03b9b54..fbf37c3 100755 --- a/src/AS_DCP_MXF.cpp +++ b/src/AS_DCP_MXF.cpp @@ -93,7 +93,7 @@ ASDCP::MD_to_WriterInfo(Identification* InfoObj, WriterInfo& Info) InfoObj->CompanyName.ToString(tmp_str); if ( *tmp_str ) Info.CompanyName = tmp_str; - memcpy(Info.ProductUUID, InfoObj->ProductUID.Data(), UUIDlen); + memcpy(Info.ProductUUID, InfoObj->ProductUID.Value(), UUIDlen); return RESULT_OK; } @@ -106,8 +106,8 @@ ASDCP::MD_to_CryptoInfo(CryptographicContext* InfoObj, WriterInfo& Info) ASDCP_TEST_NULL(InfoObj); Info.EncryptedEssence = true; - memcpy(Info.ContextID, InfoObj->ContextID.Data(), UUIDlen); - memcpy(Info.CryptographicKeyID, InfoObj->CryptographicKeyID.Data(), UUIDlen); + memcpy(Info.ContextID, InfoObj->ContextID.Value(), UUIDlen); + memcpy(Info.CryptographicKeyID, InfoObj->CryptographicKeyID.Value(), UUIDlen); UL MIC_SHA1(MICAlgorithm_HMAC_SHA1); UL MIC_NONE(MICAlgorithm_NONE); |
