Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -> no more warnings in linux compilation
This commit is contained in:
parent
16879e20ec
commit
3f5e8eb92b
|
@ -6,6 +6,7 @@ What's New for OpenJPEG
|
||||||
+ : added
|
+ : added
|
||||||
|
|
||||||
January 31, 2007
|
January 31, 2007
|
||||||
|
! [FOD] Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -> no more warnings in linux compilation
|
||||||
! [FOD] Linux Makefile added for the codec
|
! [FOD] Linux Makefile added for the codec
|
||||||
|
|
||||||
January 30, 2007
|
January 30, 2007
|
||||||
|
|
|
@ -978,7 +978,7 @@ int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters)
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
#endif USE_JPWL
|
#endif /* USE_JPWL */
|
||||||
/* <<UniPG */
|
/* <<UniPG */
|
||||||
|
|
||||||
/* ------------------------------------------------------ */
|
/* ------------------------------------------------------ */
|
||||||
|
|
|
@ -1586,7 +1586,7 @@ opj_image_t* j2k_decode(opj_j2k_t *j2k, opj_cio_t *cio) {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif USE_JPWL
|
#endif /* USE_JPWL */
|
||||||
/* <<UniPG */
|
/* <<UniPG */
|
||||||
if (id >> 8 != 0xff) {
|
if (id >> 8 != 0xff) {
|
||||||
opj_image_destroy(image);
|
opj_image_destroy(image);
|
||||||
|
|
|
@ -261,7 +261,7 @@ void OPJ_CALLCONV opj_set_default_encoder_parameters(opj_cparameters_t *paramete
|
||||||
parameters->jpwl_sens_TPH[i] = -1; /* absent */
|
parameters->jpwl_sens_TPH[i] = -1; /* absent */
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
#endif USE_JPWL
|
#endif /* USE_JPWL */
|
||||||
/* <<UniPG */
|
/* <<UniPG */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue