]> granicus.if.org Git - openjpeg/commitdiff
fixed a bug in j2k_to_image.c, that prevented the -l option to work correctly.
authorAntonin Descampe <antonin@gmail.com>
Fri, 18 Aug 2006 10:10:47 +0000 (10:10 +0000)
committerAntonin Descampe <antonin@gmail.com>
Fri, 18 Aug 2006 10:10:47 +0000 (10:10 +0000)
ChangeLog
codec/j2k_to_image.c

index 81340ecc0af4f1b5a0620cf18c6d026f2709bb3e..979f1c292d0928e5a608677a3dd98c6d7847bc0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ What's New for OpenJPEG
 ! : changed
 + : added
 
+August 18, 2006
+* [Antonin] fixed a bug in j2k_to_image.c, that prevented the -l option to work correctly.
+
 August 4, 2006
 * [Antonin] fixed a bug in pi.c, line 473, that appeared when more than 100 precincts were generated in a resolution level.
 
index c9747bbc0997a0e7c0c32f2ed5f706071a5b3e77..f86fdfb12c60e6e9ce828e71039bfad6e4c8a79d 100644 (file)
@@ -108,7 +108,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters)
        /* parse the command line */
 
        while (1) {
-               int c = getopt(argc, argv, "i:o:r:q:f:t:n:c:b:x:p:s:d:hP:S:E:M:R:T:C:I");
+               int c = getopt(argc, argv, "i:o:r:l:h");
                if (c == -1)
                        break;
                switch (c) {