diff options
| author | jhurst <jhurst@cinecert.com> | 2008-08-15 22:47:07 +0000 |
|---|---|---|
| committer | jhurst <> | 2008-08-15 22:47:07 +0000 |
| commit | a6d7c84d3734a21dbe7112a3a83b791ec211a315 (patch) | |
| tree | 2e10284ae3b386cf0cbf3df7f8924d7e9a78a4b5 /src/MXF.cpp | |
| parent | 4e404673b69a7e2772579788a0b55c7037cee314 (diff) | |
removed extraneous assert(), added multi-/ test to path-test.cpp
Diffstat (limited to 'src/MXF.cpp')
| -rwxr-xr-x | src/MXF.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/MXF.cpp b/src/MXF.cpp index bf99e3e..d01393c 100755 --- a/src/MXF.cpp +++ b/src/MXF.cpp @@ -667,11 +667,12 @@ ASDCP::MXF::OPAtomHeader::InitFromFile(const Kumu::FileReader& Reader) } else { - if ( test_s < 2 || test_s > 3 ) + if ( test_s < 2 ) { // OP-Atom states that there will be either two or three partitions: // one closed header and one closed footer with an optional body - DefaultLogSink().Warn("RIP count is not 2 or 3: %u\n", test_s); + // SMPTE 429-5 files may have many partitions, see SMPTE 410M + DefaultLogSink().Warn("RIP count is less than 2: %u\n", test_s); } m_HasRIP = true; |
