diff options
| author | jhurst <jhurst@cinecert.com> | 2010-06-17 03:33:17 +0000 |
|---|---|---|
| committer | jhurst <> | 2010-06-17 03:33:17 +0000 |
| commit | 37b37420beecdbcde2ef14eeb4f0fcfd8f2587ed (patch) | |
| tree | 280cc34d7e92159a1c2fce78ece629b7b3eace15 /src/JP2K.cpp | |
| parent | 0a7381667a7eb08ea47de790660346ac70491f84 (diff) | |
fixed bogus values in dump routine
Diffstat (limited to 'src/JP2K.cpp')
| -rwxr-xr-x | src/JP2K.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/JP2K.cpp b/src/JP2K.cpp index 6858253..b16a696 100755 --- a/src/JP2K.cpp +++ b/src/JP2K.cpp @@ -121,11 +121,11 @@ ASDCP::JP2K::Accessor::SIZ::Dump(FILE* stream) fprintf(stream, "SIZ: \n"); fprintf(stream, " Rsize: %hu\n", Rsize()); fprintf(stream, " Xsize: %u\n", Xsize()); - fprintf(stream, " Ysize: %u\n", Xsize()); + fprintf(stream, " Ysize: %u\n", Ysize()); fprintf(stream, " XOsize: %u\n", XOsize()); - fprintf(stream, " YOsize: %u\n", XOsize()); + fprintf(stream, " YOsize: %u\n", YOsize()); fprintf(stream, " XTsize: %u\n", XTsize()); - fprintf(stream, " YTsize: %u\n", XTsize()); + fprintf(stream, " YTsize: %u\n", YTsize()); fprintf(stream, "XTOsize: %u\n", XTOsize()); fprintf(stream, "YTOsize: %u\n", YTOsize()); fprintf(stream, " Csize: %u\n", Csize()); |
