summaryrefslogtreecommitdiff
path: root/tests/test_tile_encoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_tile_encoder.c')
-rw-r--r--tests/test_tile_encoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_tile_encoder.c b/tests/test_tile_encoder.c
index e1d93b3d..160391b0 100644
--- a/tests/test_tile_encoder.c
+++ b/tests/test_tile_encoder.c
@@ -147,7 +147,7 @@ int main (int argc, char *argv[])
fprintf(stdout, "Encoding random values -> keep in mind that this is very hard to compress\n");
for (i=0;i<l_data_size;++i) {
- l_data[i] = i; //rand();
+ l_data[i] = i; /*rand();*/
}
opj_set_default_encoder_parameters(&l_param);
@@ -240,7 +240,7 @@ int main (int argc, char *argv[])
++l_current_param_ptr;
}
- // should we do j2k or jp2 ?
+ /* should we do j2k or jp2 ?*/
len = strlen( output_file );
if( strcmp( output_file + len - 4, ".jp2" ) == 0 )
{
@@ -324,8 +324,8 @@ int main (int argc, char *argv[])
free(l_data);
- // Print profiling
- //PROFPRINT();
+ /* Print profiling*/
+ /*PROFPRINT();*/
return 0;
}