diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-11-28 11:46:16 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-11-28 11:46:16 +0000 |
| commit | be3a1da14a2f81129c59d40b8b69425b670d1575 (patch) | |
| tree | 68c4d4723da412b4587e264341db5b7947297d7c /src/bin | |
| parent | 650c5878752869fe794b7115126a3781055fcdeb (diff) | |
[trunk] Fix issue with ITU-T T.809 (05/2011)
- ZSI is now known as NSI (FF54)
- NSI now stores Ndim (=3)
- CAP extended marker was not set properly
Diffstat (limited to 'src/bin')
| -rwxr-xr-x | src/bin/jp3d/opj_jp3d_decompress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/jp3d/opj_jp3d_decompress.c b/src/bin/jp3d/opj_jp3d_decompress.c index 0a58b678..c2cdb321 100755 --- a/src/bin/jp3d/opj_jp3d_decompress.c +++ b/src/bin/jp3d/opj_jp3d_decompress.c @@ -518,7 +518,8 @@ int main(int argc, char **argv) { fprintf(stdout, "[RESULT] Volume: %d x %d x %d (x %d bpv)\n ",
(volume->comps[0].w >> volume->comps[0].factor[0]),
(volume->comps[0].h >> volume->comps[0].factor[1]),
- (volume->comps[0].l >> volume->comps[0].factor[2]),volume->comps[0].prec);
+ (volume->comps[0].l >> volume->comps[0].factor[2]),
+ volume->comps[0].prec);
if(original){
psnr = calc_PSNR(original,volume);
|
