summaryrefslogtreecommitdiff
path: root/src/j2c-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/j2c-test.cpp')
-rwxr-xr-xsrc/j2c-test.cpp15
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));