diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-01 10:01:09 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2012-10-01 10:01:09 +0000 |
| commit | abdb8ee3f735500da1c1cdf11c4462a4fcba616c (patch) | |
| tree | a6af739b0a5ff1cf82ba3080e546be518f8a5b4e /src/bin/jp3d | |
| parent | aa6b4b49706c83bf376c6bfaab64dca49f140179 (diff) | |
[trunk] Fix a set of warnings about C90 issues
Diffstat (limited to 'src/bin/jp3d')
| -rwxr-xr-x | src/bin/jp3d/opj_jp3d_compress.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/jp3d/opj_jp3d_compress.c b/src/bin/jp3d/opj_jp3d_compress.c index 8a593b37..30996d2d 100755 --- a/src/bin/jp3d/opj_jp3d_compress.c +++ b/src/bin/jp3d/opj_jp3d_compress.c @@ -709,10 +709,10 @@ int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters) if(parameters->numresolution[2] != 1) {
parameters->transform_format = TRF_3D_DWT;
- //fprintf(stdout, "[Warning] Resolution level in axial dim > 1 : 3D-DWT will be performed... \n");
+ /*fprintf(stdout, "[Warning] Resolution level in axial dim > 1 : 3D-DWT will be performed... \n");*/
} else if (parameters->numresolution[2] == 1) {
parameters->transform_format = TRF_2D_DWT;
- //fprintf(stdout, "[Warning] Resolution level in axial dim == 1 : 2D-DWT will be performed... \n");
+ /*fprintf(stdout, "[Warning] Resolution level in axial dim == 1 : 2D-DWT will be performed... \n");*/
}
if ((parameters->cod_format == J2K_CFMT) && (parameters->transform_format != TRF_2D_DWT || parameters->encoding_format != ENCOD_2EB)) {
@@ -860,7 +860,7 @@ int main(int argc, char **argv) { cio = opj_cio_open((opj_common_ptr)cinfo, NULL, 0);
/* encode the volume */
- //fprintf(stdout, "[INFO] Encode the volume\n");
+ /*fprintf(stdout, "[INFO] Encode the volume\n");*/
bSuccess = opj_encode(cinfo, cio, volume, parameters.index);
if (!bSuccess) {
opj_cio_close(cio);
|
