diff options
| author | jhurst <jhurst@cinecert.com> | 2007-02-15 19:00:37 +0000 |
|---|---|---|
| committer | jhurst <> | 2007-02-15 19:00:37 +0000 |
| commit | 7a0811d76b7b94909b738336cb94b2d504e7ad18 (patch) | |
| tree | 4d0f35ffb7e2ae9015f53207c3e40fcb25491dc4 | |
| parent | 7470b55c9d987d8a6d4b47bb1925c4e6eaa80afe (diff) | |
release 1.1.13
| -rwxr-xr-x | README | 18 | ||||
| -rwxr-xr-x | src/AS_DCP_MPEG2.cpp | 3 | ||||
| -rwxr-xr-x | src/MXF.cpp | 2 |
3 files changed, 17 insertions, 6 deletions
@@ -113,13 +113,25 @@ utilities all respond to -h and there are manual pages in man/. Change History -xxx.xx.xx - Bug fixes v1.1.13 +2007.02.15 - Bug fixes v1.1.13 + o Removed 'VDescObj->SampleRate.Numerator = VDesc.FrameRate;' + from MPEG2_VDesc_to_MD() in AS_DCP_MPEG2.cpp, was line 76. + o Added KM_TEST_NULL_STR_L() and KM_TEST_NULL_L() macros to + KM_log.h. These versions log the location of the null value. + Macros are now used in any module that includes KM_log.h. + o MPEG2 VES with run of zero values at the head is now OK. + o Increased VESHeaderBufSize to 16K. + o Added makefile support for local OpenSSL in ../openssl, if + present. + o The Kumu::PathIs*() functions now return false if a null or + empty string is given (used to be an assert). + o Cleaned up the install target in the makefile. o Fixed SMPTE 429-6 HMAC -- FIPS 186-2 implementation was - laughably incorrect, thanks to Doremi for pointing this - out. + laughably incorrect. Thanks to Doremi for pointing this out. o Removed default parameter to HMACContext::InitKey(). o Cleaned up messages and CLI arg handling in asdcp-test. + 2006.11.19 - Mo better stuff v1.1.12 o Changed read-only Result_t accessor methods to const. o Added Base64 (-B) option to kmrandgen. diff --git a/src/AS_DCP_MPEG2.cpp b/src/AS_DCP_MPEG2.cpp index 9e22905..a0a4ad7 100755 --- a/src/AS_DCP_MPEG2.cpp +++ b/src/AS_DCP_MPEG2.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2004-2006, John Hurst +Copyright (c) 2004-2007, John Hurst All rights reserved. Redistribution and use in source and binary forms, with or without @@ -73,7 +73,6 @@ MPEG2_VDesc_to_MD(MPEG2::VideoDescriptor& VDesc, MXF::MPEG2VideoDescriptor* VDes ASDCP_TEST_NULL(VDescObj); VDescObj->SampleRate = VDesc.SampleRate; - VDescObj->SampleRate.Numerator = VDesc.FrameRate; VDescObj->ContainerDuration = VDesc.ContainerDuration; VDescObj->FrameLayout = VDesc.FrameLayout; diff --git a/src/MXF.cpp b/src/MXF.cpp index b4cba03..8bc2d0e 100755 --- a/src/MXF.cpp +++ b/src/MXF.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2005-2006, John Hurst +Copyright (c) 2005-2007, John Hurst All rights reserved. Redistribution and use in source and binary forms, with or without |
