diff options
| author | John Hurst <jhurst@cinecert.com> | 2019-12-30 14:03:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-30 14:03:53 -0800 |
| commit | 9e269bd45830f54551722a65b0d7aa8f327e17dc (patch) | |
| tree | 6e03793692f45418ea89c55edcb95ce89d9aad5b /src/j2c-test.cpp | |
| parent | a67f55782d4758355190fe3f14ac6159b9d79e1e (diff) | |
| parent | 39d533e10e9f5248c557caa0777c8c10ed5d737c (diff) | |
Merge pull request #20 from cinecert/htj2c
WIP: add support for ST 422:2019
Diffstat (limited to 'src/j2c-test.cpp')
| -rwxr-xr-x | src/j2c-test.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/j2c-test.cpp b/src/j2c-test.cpp index 9184982..bcf95d0 100755 --- a/src/j2c-test.cpp +++ b/src/j2c-test.cpp @@ -246,6 +246,21 @@ main(int argc, const char** argv) { has_tlm = true; } + else if ( current_marker.m_Type == MRK_CAP ) + { + Accessor::CAP CAP_(current_marker); + CAP_.Dump(stdout); + } + else if ( current_marker.m_Type == MRK_PRF ) + { + Accessor::PRF PRF_(current_marker); + PRF_.Dump(stdout); + } + else if ( current_marker.m_Type == MRK_CPF ) + { + Accessor::CPF CPF_(current_marker); + CPF_.Dump(stdout); + } else { fprintf(stderr, "Unprocessed marker - %s\n", GetMarkerString(current_marker.m_Type)); |
