diff options
| author | mikey <mikey@cinecert.com> | 2009-12-31 18:06:32 +0000 |
|---|---|---|
| committer | mikey <> | 2009-12-31 18:06:32 +0000 |
| commit | b9b8eb09c7548cb44ed42c5a26488847edb4b462 (patch) | |
| tree | 6cc41882a7660866ad571dc345fee4d166b3081a | |
| parent | f6761c9d335a482925d7ad9b1b72543684afcb77 (diff) | |
version rev
| -rwxr-xr-x | README | 5 | ||||
| -rwxr-xr-x | src/MXF.cpp | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -111,13 +111,15 @@ utilities all respond to -h. Change History --- NEW STUFF FROM JH -- + +2009.12.31 - bug fixes, enhancements, v1.5.31 o Fixed swapped Interop and SMPTE OP Atom UL values. o Added get_BER_length_for_value() subroutine. o Modified ASDCP::h__Writer::WriteEKLVPacket() to allow larger BER lengths for KLV packets larger than 16 MB. This was required to support large font files in the SMPTE 429-5 implementation. + 2009.11.06 - bug fixes, enhancements, v1.5.29 o Fixed a bug that could cause HMAC values to be incorrectly stored in MXF files. Files created with versions of asdcplib @@ -144,6 +146,7 @@ Change History significant bug fix and track files created with 1.4.22 may be incompatible with other systems. + 2009.04.09 - SMPTE format fixes, enhancements and bug fixes, v.1.4.22 o asdcplib now uses GNU autotools on POSIX systems to configure and build. See "./configure" for details. Note that two options, diff --git a/src/MXF.cpp b/src/MXF.cpp index 952de7e..c4a9693 100755 --- a/src/MXF.cpp +++ b/src/MXF.cpp @@ -720,8 +720,8 @@ ASDCP::MXF::OPAtomHeader::InitFromFile(const Kumu::FileReader& Reader) } else if ( OperationalPattern == InteropOPAtomUL ) // Interop { - if ( m_Dict == &DefaultCompositeDict() ) - m_Dict = &DefaultInteropDict(); + // if ( m_Dict == &DefaultCompositeDict() ) + // m_Dict = &DefaultInteropDict(); } else { |
