diff options
| author | jhurst <jhurst@cinecert.com> | 2015-10-09 23:41:11 +0000 |
|---|---|---|
| committer | jhurst <> | 2015-10-09 23:41:11 +0000 |
| commit | f758bec505d45084d2563f20514ab4a81b27283a (patch) | |
| tree | c04eca066f94030702476d1a2801e372658bf93c /src/klvwalk.cpp | |
| parent | 2bf9e844a7eb0e22e9fc4fe4d152ad9a4818dfcf (diff) | |
o General review of Batch/Array distinction throughout the project
o Fixed a bug that caused incorrect failure when parsing JPEG 2000 codestreams having fewer than five decomposition levels.
o Fixed missing UUID generation in some instances of the MCALinkID property
o Added -w option to asdcp-wrap to support use of WTF label with MCA
Diffstat (limited to 'src/klvwalk.cpp')
| -rwxr-xr-x | src/klvwalk.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/klvwalk.cpp b/src/klvwalk.cpp index bcdda85..779ee72 100755 --- a/src/klvwalk.cpp +++ b/src/klvwalk.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2005-2013, John Hurst +Copyright (c) 2005-2015, John Hurst All rights reserved. Redistribution and use in source and binary forms, with or without @@ -236,7 +236,7 @@ main(int argc, const char** argv) if ( ASDCP_SUCCESS(result) && RIP.PairArray.size() > 2 ) { - MXF::Array<MXF::RIP::Pair>::const_iterator pi = RIP.PairArray.begin(); + MXF::RIP::const_pair_iterator pi = RIP.PairArray.begin(); for ( pi++; pi != RIP.PairArray.end() && ASDCP_SUCCESS(result); pi++ ) { @@ -309,7 +309,7 @@ main(int argc, const char** argv) { RIP.Dump(); - MXF::Array<MXF::RIP::Pair>::const_iterator i; + MXF::RIP::const_pair_iterator i; for ( i = RIP.PairArray.begin(); i != RIP.PairArray.end(); ++i ) { Reader.Seek(i->ByteOffset); |
