diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2017-07-26 21:06:38 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2017-07-26 21:06:38 +0200 |
| commit | 5e795d90a1e47616e0c7a2e39381c13ccf7fd6dd (patch) | |
| tree | b11a992a90fc82a23357ef9588aead07862b29a0 /wrapping/java/openjp2/JavaOpenJPEG.c | |
| parent | 2be20ce7d9996e960d79f3ad6ec439a9895849ed (diff) | |
Spelling fixes (patch by ka7, #890, rebased on top of master)
Diffstat (limited to 'wrapping/java/openjp2/JavaOpenJPEG.c')
| -rw-r--r-- | wrapping/java/openjp2/JavaOpenJPEG.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrapping/java/openjp2/JavaOpenJPEG.c b/wrapping/java/openjp2/JavaOpenJPEG.c index dad2dc66..85b0c0af 100644 --- a/wrapping/java/openjp2/JavaOpenJPEG.c +++ b/wrapping/java/openjp2/JavaOpenJPEG.c @@ -1395,7 +1395,7 @@ static int parse_cmdline_encoder(int argc, char **argv, @return a pointer to a char[] Syntax of the index: one char for the version number (1): one byte because no problem with little endian, big endian etc. - one int for each of the following informations: + one int for each of the following information: Image Width Image Height progression order @@ -1468,7 +1468,7 @@ static char* create_index_into_byte_array(opj_codestream_info_t *cstr_info, buffer[0] = 1; /* Version stored on a byte*/ buffer++; - /* Remaining informations are stored on a int.*/ + /* Remaining information are stored on a int.*/ ((int*)buffer)[buffer_pos++] = cstr_info->image_w; ((int*)buffer)[buffer_pos++] = cstr_info->image_h; ((int*)buffer)[buffer_pos++] = cstr_info->prog; |
