diff options
| -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 { |
