diff options
| author | jhurst <jhurst@cinecert.com> | 2018-03-25 22:54:20 +0000 |
|---|---|---|
| committer | jhurst <> | 2018-03-25 22:54:20 +0000 |
| commit | ffc88e36d1b15a863bad6577dee7d59254edfa22 (patch) | |
| tree | f46ee12919d9eb6690815eb01f48e3fae73ddfbb /src/AS_02_internal.h | |
| parent | 40ecb821a29d1049e0a69149b20e552c7fbb0ae0 (diff) | |
o Fixed MinorVersion error (was "2", is now "3") when writing BodyPartition packs preceding partitions in AS-02 files.
o Fixed AS-DCP timed text writer, was creating DM Segment instead of SourceClip in the source package.
o Changed SourcePackage timecode track start to 00:00:00:00 (was 01:00:00:00)
o Fixed reference counting errors in asdcp.MXFWriter and asdcp.TimedTextWriter that were causing asdcp.MXFReader and asdcp.TimedTextReader (respectively) to remain allocated after all references had been deleted, thus leaking file handles and memory.
o Fixed broken arg parser (missing format token in format string for "EssenceType" argument) in TimedTextWriter
Diffstat (limited to 'src/AS_02_internal.h')
| -rw-r--r-- | src/AS_02_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/AS_02_internal.h b/src/AS_02_internal.h index 9153ac9..560fb6c 100644 --- a/src/AS_02_internal.h +++ b/src/AS_02_internal.h @@ -179,6 +179,8 @@ namespace AS_02 this->m_IndexWriter.SetPrimerLookup(&this->m_HeaderPart.m_Primer); this->m_RIP.PairArray.push_back(RIP::PartitionPair(0, 0)); // Header partition RIP entry + this->m_IndexWriter.MajorVersion = m_HeaderPart.MajorVersion; + this->m_IndexWriter.MinorVersion = m_HeaderPart.MinorVersion; this->m_IndexWriter.OperationalPattern = this->m_HeaderPart.OperationalPattern; this->m_IndexWriter.EssenceContainers = this->m_HeaderPart.EssenceContainers; |
