opj_compress: improve help message regarding new IMF switch
[openjpeg.git] / src / bin / jp2 / opj_decompress.c
1 /*
2  * The copyright in this software is being made available under the 2-clauses
3  * BSD License, included below. This software may be subject to other third
4  * party and contributor rights, including patent rights, and no such rights
5  * are granted under this license.
6  *
7  * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
8  * Copyright (c) 2002-2014, Professor Benoit Macq
9  * Copyright (c) 2001-2003, David Janssens
10  * Copyright (c) 2002-2003, Yannick Verschueren
11  * Copyright (c) 2003-2007, Francois-Olivier Devaux
12  * Copyright (c) 2003-2014, Antonin Descampe
13  * Copyright (c) 2005, Herve Drolon, FreeImage Team
14  * Copyright (c) 2006-2007, Parvatha Elangovan
15  * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
16  * Copyright (c) 2012, CS Systemes d'Information, France
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions
21  * are met:
22  * 1. Redistributions of source code must retain the above copyright
23  *    notice, this list of conditions and the following disclaimer.
24  * 2. Redistributions in binary form must reproduce the above copyright
25  *    notice, this list of conditions and the following disclaimer in the
26  *    documentation and/or other materials provided with the distribution.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
29  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
32  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGE.
39  */
40 #include "opj_apps_config.h"
41
42 #include <stdio.h>
43 #include <string.h>
44 #include <stdlib.h>
45 #include <math.h>
46 #include <time.h>
47
48 #ifdef _WIN32
49 #include "windirent.h"
50 #else
51 #include <dirent.h>
52 #endif /* _WIN32 */
53
54 #ifdef _WIN32
55 #include <windows.h>
56 #define strcasecmp _stricmp
57 #define strncasecmp _strnicmp
58 #else
59 #include <strings.h>
60 #include <sys/time.h>
61 #include <sys/resource.h>
62 #include <sys/times.h>
63 #endif /* _WIN32 */
64
65 #include "openjpeg.h"
66 #include "opj_getopt.h"
67 #include "convert.h"
68 #include "index.h"
69
70 #ifdef OPJ_HAVE_LIBLCMS2
71 #include <lcms2.h>
72 #endif
73 #ifdef OPJ_HAVE_LIBLCMS1
74 #include <lcms.h>
75 #endif
76 #include "color.h"
77
78 #include "format_defs.h"
79 #include "opj_string.h"
80
81 typedef struct dircnt {
82     /** Buffer for holding images read from Directory*/
83     char *filename_buf;
84     /** Pointer to the buffer*/
85     char **filename;
86 } dircnt_t;
87
88
89 typedef struct img_folder {
90     /** The directory path of the folder containing input images*/
91     char *imgdirpath;
92     /** Output format*/
93     const char *out_format;
94     /** Enable option*/
95     char set_imgdir;
96     /** Enable Cod Format for output*/
97     char set_out_format;
98
99 } img_fol_t;
100
101 typedef enum opj_prec_mode {
102     OPJ_PREC_MODE_CLIP,
103     OPJ_PREC_MODE_SCALE
104 } opj_precision_mode;
105
106 typedef struct opj_prec {
107     OPJ_UINT32         prec;
108     opj_precision_mode mode;
109 } opj_precision;
110
111 typedef struct opj_decompress_params {
112     /** core library parameters */
113     opj_dparameters_t core;
114
115     /** input file name */
116     char infile[OPJ_PATH_LEN];
117     /** output file name */
118     char outfile[OPJ_PATH_LEN];
119     /** input file format 0: J2K, 1: JP2, 2: JPT */
120     int decod_format;
121     /** output file format 0: PGX, 1: PxM, 2: BMP */
122     int cod_format;
123     /** index file name */
124     char indexfilename[OPJ_PATH_LEN];
125
126     /** Decoding area left boundary */
127     OPJ_UINT32 DA_x0;
128     /** Decoding area right boundary */
129     OPJ_UINT32 DA_x1;
130     /** Decoding area up boundary */
131     OPJ_UINT32 DA_y0;
132     /** Decoding area bottom boundary */
133     OPJ_UINT32 DA_y1;
134     /** Verbose mode */
135     OPJ_BOOL m_verbose;
136
137     /** tile number of the decoded tile */
138     OPJ_UINT32 tile_index;
139     /** Nb of tile to decode */
140     OPJ_UINT32 nb_tile_to_decode;
141
142     opj_precision* precision;
143     OPJ_UINT32     nb_precision;
144
145     /* force output colorspace to RGB */
146     int force_rgb;
147     /* upsample components according to their dx/dy values */
148     int upsample;
149     /* split output components to different files */
150     int split_pnm;
151     /** number of threads */
152     int num_threads;
153     /* Quiet */
154     int quiet;
155     /** number of components to decode */
156     OPJ_UINT32 numcomps;
157     /** indices of components to decode */
158     OPJ_UINT32* comps_indices;
159 } opj_decompress_parameters;
160
161 /* -------------------------------------------------------------------------- */
162 /* Declarations                                                               */
163 int get_num_images(char *imgdirpath);
164 int load_images(dircnt_t *dirptr, char *imgdirpath);
165 int get_file_format(const char *filename);
166 char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
167                    opj_decompress_parameters *parameters);
168 static int infile_format(const char *fname);
169
170 int parse_cmdline_decoder(int argc, char **argv,
171                           opj_decompress_parameters *parameters, img_fol_t *img_fol);
172 int parse_DA_values(char* inArg, unsigned int *DA_x0, unsigned int *DA_y0,
173                     unsigned int *DA_x1, unsigned int *DA_y1);
174
175 static opj_image_t* convert_gray_to_rgb(opj_image_t* original);
176
177 /* -------------------------------------------------------------------------- */
178 static void decode_help_display(void)
179 {
180     fprintf(stdout,
181             "\nThis is the opj_decompress utility from the OpenJPEG project.\n"
182             "It decompresses JPEG 2000 codestreams to various image formats.\n"
183             "It has been compiled against openjp2 library v%s.\n\n", opj_version());
184
185     fprintf(stdout, "Parameters:\n"
186             "-----------\n"
187             "\n"
188             "  -ImgDir <directory> \n"
189             "   Image file Directory path \n"
190             "  -OutFor <PBM|PGM|PPM|PNM|PAM|PGX|PNG|BMP|TIF|RAW|RAWL|TGA>\n"
191             "    REQUIRED only if -ImgDir is used\n"
192             "   Output format for decompressed images.\n");
193     fprintf(stdout, "  -i <compressed file>\n"
194             "    REQUIRED only if an Input image directory is not specified\n"
195             "    Currently accepts J2K-files, JP2-files and JPT-files. The file type\n"
196             "    is identified based on its suffix.\n");
197     fprintf(stdout, "  -o <decompressed file>\n"
198             "    REQUIRED\n"
199             "    Currently accepts formats specified above (see OutFor option)\n"
200             "    Binary data is written to the file (not ascii). If a PGX\n"
201             "    filename is given, there will be as many output files as there are\n"
202             "    components: an indice starting from 0 will then be appended to the\n"
203             "    output filename, just before the \"pgx\" extension. If a PGM filename\n"
204             "    is given and there are more than one component, only the first component\n"
205             "    will be written to the file.\n");
206     fprintf(stdout, "  -r <reduce factor>\n"
207             "    Set the number of highest resolution levels to be discarded. The\n"
208             "    image resolution is effectively divided by 2 to the power of the\n"
209             "    number of discarded levels. The reduce factor is limited by the\n"
210             "    smallest total number of decomposition levels among tiles.\n"
211             "  -l <number of quality layers to decode>\n"
212             "    Set the maximum number of quality layers to decode. If there are\n"
213             "    less quality layers than the specified number, all the quality layers\n"
214             "    are decoded.\n");
215     fprintf(stdout, "  -x  \n"
216             "    Create an index file *.Idx (-x index_name.Idx) \n"
217             "  -d <x0,y0,x1,y1>\n"
218             "    OPTIONAL\n"
219             "    Decoding area\n"
220             "    By default all the image is decoded.\n"
221             "  -t <tile_number>\n"
222             "    OPTIONAL\n"
223             "    Set the tile number of the decoded tile. Follow the JPEG2000 convention from left-up to bottom-up\n"
224             "    By default all tiles are decoded.\n");
225     fprintf(stdout, "  -p <comp 0 precision>[C|S][,<comp 1 precision>[C|S][,...]]\n"
226             "    OPTIONAL\n"
227             "    Force the precision (bit depth) of components.\n");
228     fprintf(stdout,
229             "    There shall be at least 1 value. Theres no limit on the number of values (comma separated, last values ignored if too much values).\n"
230             "    If there are less values than components, the last value is used for remaining components.\n"
231             "    If 'C' is specified (default), values are clipped.\n"
232             "    If 'S' is specified, values are scaled.\n"
233             "    A 0 value can be specified (meaning original bit depth).\n");
234     fprintf(stdout, "  -c first_comp_index[,second_comp_index][,...]\n"
235             "    OPTIONAL\n"
236             "    To limit the number of components to decoded.\n"
237             "    Component indices are numbered starting at 0.\n");
238     fprintf(stdout, "  -force-rgb\n"
239             "    Force output image colorspace to RGB\n"
240             "  -upsample\n"
241             "    Downsampled components will be upsampled to image size\n"
242             "  -split-pnm\n"
243             "    Split output components to different files when writing to PNM\n");
244     if (opj_has_thread_support()) {
245         fprintf(stdout, "  -threads <num_threads|ALL_CPUS>\n"
246                 "    Number of threads to use for decoding or ALL_CPUS for all available cores.\n");
247     }
248     fprintf(stdout, "  -quiet\n"
249             "    Disable output from the library and other output.\n");
250     /* UniPG>> */
251 #ifdef USE_JPWL
252     fprintf(stdout, "  -W <options>\n"
253             "    Activates the JPWL correction capability, if the codestream complies.\n"
254             "    Options can be a comma separated list of <param=val> tokens:\n"
255             "    c, c=numcomps\n"
256             "       numcomps is the number of expected components in the codestream\n"
257             "       (search of first EPB rely upon this, default is %d)\n",
258             JPWL_EXPECTED_COMPONENTS);
259 #endif /* USE_JPWL */
260     /* <<UniPG */
261     fprintf(stdout, "\n");
262 }
263
264 /* -------------------------------------------------------------------------- */
265
266 static OPJ_BOOL parse_precision(const char* option,
267                                 opj_decompress_parameters* parameters)
268 {
269     const char* l_remaining = option;
270     OPJ_BOOL l_result = OPJ_TRUE;
271
272     /* reset */
273     if (parameters->precision) {
274         free(parameters->precision);
275         parameters->precision = NULL;
276     }
277     parameters->nb_precision = 0U;
278
279     for (;;) {
280         int prec;
281         char mode;
282         char comma;
283         int count;
284
285         count = sscanf(l_remaining, "%d%c%c", &prec, &mode, &comma);
286         if (count == 1) {
287             mode = 'C';
288             count++;
289         }
290         if ((count == 2) || (mode == ',')) {
291             if (mode == ',') {
292                 mode = 'C';
293             }
294             comma = ',';
295             count = 3;
296         }
297         if (count == 3) {
298             if ((prec < 1) || (prec > 32)) {
299                 fprintf(stderr, "Invalid precision %d in precision option %s\n", prec, option);
300                 l_result = OPJ_FALSE;
301                 break;
302             }
303             if ((mode != 'C') && (mode != 'S')) {
304                 fprintf(stderr, "Invalid precision mode %c in precision option %s\n", mode,
305                         option);
306                 l_result = OPJ_FALSE;
307                 break;
308             }
309             if (comma != ',') {
310                 fprintf(stderr, "Invalid character %c in precision option %s\n", comma, option);
311                 l_result = OPJ_FALSE;
312                 break;
313             }
314
315             if (parameters->precision == NULL) {
316                 /* first one */
317                 parameters->precision = (opj_precision *)malloc(sizeof(opj_precision));
318                 if (parameters->precision == NULL) {
319                     fprintf(stderr, "Could not allocate memory for precision option\n");
320                     l_result = OPJ_FALSE;
321                     break;
322                 }
323             } else {
324                 OPJ_UINT32 l_new_size = parameters->nb_precision + 1U;
325                 opj_precision* l_new;
326
327                 if (l_new_size == 0U) {
328                     fprintf(stderr, "Could not allocate memory for precision option\n");
329                     l_result = OPJ_FALSE;
330                     break;
331                 }
332
333                 l_new = (opj_precision *)realloc(parameters->precision,
334                                                  l_new_size * sizeof(opj_precision));
335                 if (l_new == NULL) {
336                     fprintf(stderr, "Could not allocate memory for precision option\n");
337                     l_result = OPJ_FALSE;
338                     break;
339                 }
340                 parameters->precision = l_new;
341             }
342
343             parameters->precision[parameters->nb_precision].prec = (OPJ_UINT32)prec;
344             switch (mode) {
345             case 'C':
346                 parameters->precision[parameters->nb_precision].mode = OPJ_PREC_MODE_CLIP;
347                 break;
348             case 'S':
349                 parameters->precision[parameters->nb_precision].mode = OPJ_PREC_MODE_SCALE;
350                 break;
351             default:
352                 break;
353             }
354             parameters->nb_precision++;
355
356             l_remaining = strchr(l_remaining, ',');
357             if (l_remaining == NULL) {
358                 break;
359             }
360             l_remaining += 1;
361         } else {
362             fprintf(stderr, "Could not parse precision option %s\n", option);
363             l_result = OPJ_FALSE;
364             break;
365         }
366     }
367
368     return l_result;
369 }
370
371 /* -------------------------------------------------------------------------- */
372
373 int get_num_images(char *imgdirpath)
374 {
375     DIR *dir;
376     struct dirent* content;
377     int num_images = 0;
378
379     /*Reading the input images from given input directory*/
380
381     dir = opendir(imgdirpath);
382     if (!dir) {
383         fprintf(stderr, "Could not open Folder %s\n", imgdirpath);
384         return 0;
385     }
386
387     while ((content = readdir(dir)) != NULL) {
388         if (strcmp(".", content->d_name) == 0 || strcmp("..", content->d_name) == 0) {
389             continue;
390         }
391         num_images++;
392     }
393     closedir(dir);
394     return num_images;
395 }
396
397 /* -------------------------------------------------------------------------- */
398 int load_images(dircnt_t *dirptr, char *imgdirpath)
399 {
400     DIR *dir;
401     struct dirent* content;
402     int i = 0;
403
404     /*Reading the input images from given input directory*/
405
406     dir = opendir(imgdirpath);
407     if (!dir) {
408         fprintf(stderr, "Could not open Folder %s\n", imgdirpath);
409         return 1;
410     } else   {
411         fprintf(stderr, "Folder opened successfully\n");
412     }
413
414     while ((content = readdir(dir)) != NULL) {
415         if (strcmp(".", content->d_name) == 0 || strcmp("..", content->d_name) == 0) {
416             continue;
417         }
418
419         strcpy(dirptr->filename[i], content->d_name);
420         i++;
421     }
422     closedir(dir);
423     return 0;
424 }
425
426 /* -------------------------------------------------------------------------- */
427 int get_file_format(const char *filename)
428 {
429     unsigned int i;
430     static const char *extension[] = {"pgx", "pnm", "pgm", "ppm", "bmp", "tif", "raw", "rawl", "tga", "png", "j2k", "jp2", "jpt", "j2c", "jpc" };
431     static const int format[] = { PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, RAWL_DFMT, TGA_DFMT, PNG_DFMT, J2K_CFMT, JP2_CFMT, JPT_CFMT, J2K_CFMT, J2K_CFMT };
432     const char * ext = strrchr(filename, '.');
433     if (ext == NULL) {
434         return -1;
435     }
436     ext++;
437     if (*ext) {
438         for (i = 0; i < sizeof(format) / sizeof(*format); i++) {
439             if (strcasecmp(ext, extension[i]) == 0) {
440                 return format[i];
441             }
442         }
443     }
444
445     return -1;
446 }
447
448 #ifdef _WIN32
449 const char* path_separator = "\\";
450 #else
451 const char* path_separator = "/";
452 #endif
453
454 /* -------------------------------------------------------------------------- */
455 char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
456                    opj_decompress_parameters *parameters)
457 {
458     char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],
459          outfilename[OPJ_PATH_LEN], temp_ofname[OPJ_PATH_LEN];
460     char *temp_p, temp1[OPJ_PATH_LEN] = "";
461
462     strcpy(image_filename, dirptr->filename[imageno]);
463     fprintf(stderr, "File Number %d \"%s\"\n", imageno, image_filename);
464     sprintf(infilename, "%s%s%s", img_fol->imgdirpath, path_separator,
465             image_filename);
466     parameters->decod_format = infile_format(infilename);
467     if (parameters->decod_format == -1) {
468         return 1;
469     }
470     if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile),
471                      infilename) != 0) {
472         return 1;
473     }
474
475     /*Set output file*/
476     strcpy(temp_ofname, strtok(image_filename, "."));
477     while ((temp_p = strtok(NULL, ".")) != NULL) {
478         strcat(temp_ofname, temp1);
479         sprintf(temp1, ".%s", temp_p);
480     }
481     if (img_fol->set_out_format == 1) {
482         sprintf(outfilename, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
483                 img_fol->out_format);
484         if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
485                          outfilename) != 0) {
486             return 1;
487         }
488     }
489     return 0;
490 }
491
492 /* -------------------------------------------------------------------------- */
493 #define JP2_RFC3745_MAGIC "\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a"
494 #define JP2_MAGIC "\x0d\x0a\x87\x0a"
495 /* position 45: "\xff\x52" */
496 #define J2K_CODESTREAM_MAGIC "\xff\x4f\xff\x51"
497
498 static int infile_format(const char *fname)
499 {
500     FILE *reader;
501     const char *s, *magic_s;
502     int ext_format, magic_format;
503     unsigned char buf[12];
504     OPJ_SIZE_T l_nb_read;
505
506     reader = fopen(fname, "rb");
507
508     if (reader == NULL) {
509         return -2;
510     }
511
512     memset(buf, 0, 12);
513     l_nb_read = fread(buf, 1, 12, reader);
514     fclose(reader);
515     if (l_nb_read != 12) {
516         return -1;
517     }
518
519
520
521     ext_format = get_file_format(fname);
522
523     if (ext_format == JPT_CFMT) {
524         return JPT_CFMT;
525     }
526
527     if (memcmp(buf, JP2_RFC3745_MAGIC, 12) == 0 || memcmp(buf, JP2_MAGIC, 4) == 0) {
528         magic_format = JP2_CFMT;
529         magic_s = ".jp2";
530     } else if (memcmp(buf, J2K_CODESTREAM_MAGIC, 4) == 0) {
531         magic_format = J2K_CFMT;
532         magic_s = ".j2k or .jpc or .j2c";
533     } else {
534         return -1;
535     }
536
537     if (magic_format == ext_format) {
538         return ext_format;
539     }
540
541     s = fname + strlen(fname) - 4;
542
543     fputs("\n===========================================\n", stderr);
544     fprintf(stderr, "The extension of this file is incorrect.\n"
545             "FOUND %s. SHOULD BE %s\n", s, magic_s);
546     fputs("===========================================\n", stderr);
547
548     return magic_format;
549 }
550
551 /* -------------------------------------------------------------------------- */
552 /**
553  * Parse the command line
554  */
555 /* -------------------------------------------------------------------------- */
556 int parse_cmdline_decoder(int argc, char **argv,
557                           opj_decompress_parameters *parameters, img_fol_t *img_fol)
558 {
559     /* parse the command line */
560     int totlen, c;
561     opj_option_t long_option[] = {
562         {"ImgDir",    REQ_ARG, NULL, 'y'},
563         {"OutFor",    REQ_ARG, NULL, 'O'},
564         {"force-rgb", NO_ARG,  NULL, 1},
565         {"upsample",  NO_ARG,  NULL, 1},
566         {"split-pnm", NO_ARG,  NULL, 1},
567         {"threads",   REQ_ARG, NULL, 'T'},
568         {"quiet", NO_ARG,  NULL, 1},
569     };
570
571     const char optlist[] = "i:o:r:l:x:d:t:p:c:"
572
573                            /* UniPG>> */
574 #ifdef USE_JPWL
575                            "W:"
576 #endif /* USE_JPWL */
577                            /* <<UniPG */
578                            "h"     ;
579
580     long_option[2].flag = &(parameters->force_rgb);
581     long_option[3].flag = &(parameters->upsample);
582     long_option[4].flag = &(parameters->split_pnm);
583     long_option[6].flag = &(parameters->quiet);
584     totlen = sizeof(long_option);
585     opj_reset_options_reading();
586     img_fol->set_out_format = 0;
587     do {
588         c = opj_getopt_long(argc, argv, optlist, long_option, totlen);
589         if (c == -1) {
590             break;
591         }
592         switch (c) {
593         case 0: /* long opt with flag */
594             break;
595         case 'i': {         /* input file */
596             char *infile = opj_optarg;
597             parameters->decod_format = infile_format(infile);
598             switch (parameters->decod_format) {
599             case J2K_CFMT:
600                 break;
601             case JP2_CFMT:
602                 break;
603             case JPT_CFMT:
604                 break;
605             case -2:
606                 fprintf(stderr,
607                         "!! infile cannot be read: %s !!\n\n",
608                         infile);
609                 return 1;
610             default:
611                 fprintf(stderr,
612                         "[ERROR] Unknown input file format: %s \n"
613                         "        Known file formats are *.j2k, *.jp2, *.jpc or *.jpt\n",
614                         infile);
615                 return 1;
616             }
617             if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile), infile) != 0) {
618                 fprintf(stderr, "[ERROR] Path is too long\n");
619                 return 1;
620             }
621         }
622         break;
623
624         /* ----------------------------------------------------- */
625
626         case 'o': {         /* output file */
627             char *outfile = opj_optarg;
628             parameters->cod_format = get_file_format(outfile);
629             switch (parameters->cod_format) {
630             case PGX_DFMT:
631                 break;
632             case PXM_DFMT:
633                 break;
634             case BMP_DFMT:
635                 break;
636             case TIF_DFMT:
637                 break;
638             case RAW_DFMT:
639                 break;
640             case RAWL_DFMT:
641                 break;
642             case TGA_DFMT:
643                 break;
644             case PNG_DFMT:
645                 break;
646             default:
647                 fprintf(stderr,
648                         "Unknown output format image %s [only *.png, *.pnm, *.pgm, *.ppm, *.pgx, *.bmp, *.tif, *.raw or *.tga]!!\n",
649                         outfile);
650                 return 1;
651             }
652             if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
653                              outfile) != 0) {
654                 fprintf(stderr, "[ERROR] Path is too long\n");
655                 return 1;
656             }
657         }
658         break;
659
660         /* ----------------------------------------------------- */
661
662         case 'O': {         /* output format */
663             char outformat[50];
664             char *of = opj_optarg;
665             sprintf(outformat, ".%s", of);
666             img_fol->set_out_format = 1;
667             parameters->cod_format = get_file_format(outformat);
668             switch (parameters->cod_format) {
669             case PGX_DFMT:
670                 img_fol->out_format = "pgx";
671                 break;
672             case PXM_DFMT:
673                 img_fol->out_format = "ppm";
674                 break;
675             case BMP_DFMT:
676                 img_fol->out_format = "bmp";
677                 break;
678             case TIF_DFMT:
679                 img_fol->out_format = "tif";
680                 break;
681             case RAW_DFMT:
682                 img_fol->out_format = "raw";
683                 break;
684             case RAWL_DFMT:
685                 img_fol->out_format = "rawl";
686                 break;
687             case TGA_DFMT:
688                 img_fol->out_format = "raw";
689                 break;
690             case PNG_DFMT:
691                 img_fol->out_format = "png";
692                 break;
693             default:
694                 fprintf(stderr,
695                         "Unknown output format image %s [only *.png, *.pnm, *.pgm, *.ppm, *.pgx, *.bmp, *.tif, *.raw or *.tga]!!\n",
696                         outformat);
697                 return 1;
698                 break;
699             }
700         }
701         break;
702
703         /* ----------------------------------------------------- */
704
705
706         case 'r': {     /* reduce option */
707             sscanf(opj_optarg, "%u", &(parameters->core.cp_reduce));
708         }
709         break;
710
711         /* ----------------------------------------------------- */
712
713
714         case 'l': {     /* layering option */
715             sscanf(opj_optarg, "%u", &(parameters->core.cp_layer));
716         }
717         break;
718
719         /* ----------------------------------------------------- */
720
721         case 'h':           /* display an help description */
722             decode_help_display();
723             return 1;
724
725         /* ----------------------------------------------------- */
726
727         case 'y': {         /* Image Directory path */
728             img_fol->imgdirpath = (char*)malloc(strlen(opj_optarg) + 1);
729             if (img_fol->imgdirpath == NULL) {
730                 return 1;
731             }
732             strcpy(img_fol->imgdirpath, opj_optarg);
733             img_fol->set_imgdir = 1;
734         }
735         break;
736
737         /* ----------------------------------------------------- */
738
739         case 'd': {         /* Input decode ROI */
740             size_t size_optarg = (size_t)strlen(opj_optarg) + 1U;
741             char *ROI_values = (char*) malloc(size_optarg);
742             if (ROI_values == NULL) {
743                 fprintf(stderr, "[ERROR] Couldn't allocate memory\n");
744                 return 1;
745             }
746             ROI_values[0] = '\0';
747             memcpy(ROI_values, opj_optarg, size_optarg);
748             /*printf("ROI_values = %s [%d / %d]\n", ROI_values, strlen(ROI_values), size_optarg ); */
749             parse_DA_values(ROI_values, &parameters->DA_x0, &parameters->DA_y0,
750                             &parameters->DA_x1, &parameters->DA_y1);
751
752             free(ROI_values);
753         }
754         break;
755
756         /* ----------------------------------------------------- */
757
758         case 't': {         /* Input tile index */
759             sscanf(opj_optarg, "%u", &parameters->tile_index);
760             parameters->nb_tile_to_decode = 1;
761         }
762         break;
763
764         /* ----------------------------------------------------- */
765
766         case 'x': {         /* Creation of index file */
767             if (opj_strcpy_s(parameters->indexfilename, sizeof(parameters->indexfilename),
768                              opj_optarg) != 0) {
769                 fprintf(stderr, "[ERROR] Path is too long\n");
770                 return 1;
771             }
772         }
773         break;
774
775         /* ----------------------------------------------------- */
776         case 'p': { /* Force precision */
777             if (!parse_precision(opj_optarg, parameters)) {
778                 return 1;
779             }
780         }
781         break;
782
783         /* ----------------------------------------------------- */
784         case 'c': { /* Componenets */
785             const char* iter = opj_optarg;
786             while (1) {
787                 parameters->numcomps ++;
788                 parameters->comps_indices = (OPJ_UINT32*) realloc(
789                                                 parameters->comps_indices,
790                                                 parameters->numcomps * sizeof(OPJ_UINT32));
791                 parameters->comps_indices[parameters->numcomps - 1] =
792                     (OPJ_UINT32) atoi(iter);
793                 iter = strchr(iter, ',');
794                 if (iter == NULL) {
795                     break;
796                 }
797                 iter ++;
798             }
799         }
800         break;
801             /* ----------------------------------------------------- */
802
803             /* UniPG>> */
804 #ifdef USE_JPWL
805
806         case 'W': {         /* activate JPWL correction */
807             char *token = NULL;
808
809             token = strtok(opj_optarg, ",");
810             while (token != NULL) {
811
812                 /* search expected number of components */
813                 if (*token == 'c') {
814
815                     static int compno;
816
817                     compno = JPWL_EXPECTED_COMPONENTS; /* predefined no. of components */
818
819                     if (sscanf(token, "c=%d", &compno) == 1) {
820                         /* Specified */
821                         if ((compno < 1) || (compno > 256)) {
822                             fprintf(stderr, "ERROR -> invalid number of components c = %d\n", compno);
823                             return 1;
824                         }
825                         parameters->jpwl_exp_comps = compno;
826
827                     } else if (!strcmp(token, "c")) {
828                         /* default */
829                         parameters->jpwl_exp_comps = compno; /* auto for default size */
830
831                     } else {
832                         fprintf(stderr, "ERROR -> invalid components specified = %s\n", token);
833                         return 1;
834                     };
835                 }
836
837                 /* search maximum number of tiles */
838                 if (*token == 't') {
839
840                     static int tileno;
841
842                     tileno = JPWL_MAXIMUM_TILES; /* maximum no. of tiles */
843
844                     if (sscanf(token, "t=%d", &tileno) == 1) {
845                         /* Specified */
846                         if ((tileno < 1) || (tileno > JPWL_MAXIMUM_TILES)) {
847                             fprintf(stderr, "ERROR -> invalid number of tiles t = %d\n", tileno);
848                             return 1;
849                         }
850                         parameters->jpwl_max_tiles = tileno;
851
852                     } else if (!strcmp(token, "t")) {
853                         /* default */
854                         parameters->jpwl_max_tiles = tileno; /* auto for default size */
855
856                     } else {
857                         fprintf(stderr, "ERROR -> invalid tiles specified = %s\n", token);
858                         return 1;
859                     };
860                 }
861
862                 /* next token or bust */
863                 token = strtok(NULL, ",");
864             };
865             parameters->jpwl_correct = OPJ_TRUE;
866             if (!(parameter->quiet)) {
867                 fprintf(stdout, "JPWL correction capability activated\n");
868                 fprintf(stdout, "- expecting %d components\n", parameters->jpwl_exp_comps);
869             }
870         }
871         break;
872 #endif /* USE_JPWL */
873         /* <<UniPG */
874
875         /* ----------------------------------------------------- */
876         case 'T': { /* Number of threads */
877             if (strcmp(opj_optarg, "ALL_CPUS") == 0) {
878                 parameters->num_threads = opj_get_num_cpus();
879                 if (parameters->num_threads == 1) {
880                     parameters->num_threads = 0;
881                 }
882             } else {
883                 sscanf(opj_optarg, "%d", &parameters->num_threads);
884             }
885         }
886         break;
887
888         /* ----------------------------------------------------- */
889
890         default:
891             fprintf(stderr, "[WARNING] An invalid option has been ignored.\n");
892             break;
893         }
894     } while (c != -1);
895
896     /* check for possible errors */
897     if (img_fol->set_imgdir == 1) {
898         if (!(parameters->infile[0] == 0)) {
899             fprintf(stderr, "[ERROR] options -ImgDir and -i cannot be used together.\n");
900             return 1;
901         }
902         if (img_fol->set_out_format == 0) {
903             fprintf(stderr,
904                     "[ERROR] When -ImgDir is used, -OutFor <FORMAT> must be used.\n");
905             fprintf(stderr, "Only one format allowed.\n"
906                     "Valid format are PGM, PPM, PNM, PGX, BMP, TIF, RAW and TGA.\n");
907             return 1;
908         }
909         if (!((parameters->outfile[0] == 0))) {
910             fprintf(stderr, "[ERROR] options -ImgDir and -o cannot be used together.\n");
911             return 1;
912         }
913     } else {
914         if ((parameters->infile[0] == 0) || (parameters->outfile[0] == 0)) {
915             fprintf(stderr, "[ERROR] Required parameters are missing\n"
916                     "Example: %s -i image.j2k -o image.pgm\n", argv[0]);
917             fprintf(stderr, "   Help: %s -h\n", argv[0]);
918             return 1;
919         }
920     }
921
922     return 0;
923 }
924
925 /* -------------------------------------------------------------------------- */
926 /**
927  * Parse decoding area input values
928  * separator = ","
929  */
930 /* -------------------------------------------------------------------------- */
931 int parse_DA_values(char* inArg, unsigned int *DA_x0, unsigned int *DA_y0,
932                     unsigned int *DA_x1, unsigned int *DA_y1)
933 {
934     int it = 0;
935     int values[4];
936     char delims[] = ",";
937     char *result = NULL;
938     result = strtok(inArg, delims);
939
940     while ((result != NULL) && (it < 4)) {
941         values[it] = atoi(result);
942         result = strtok(NULL, delims);
943         it++;
944     }
945
946     if (it != 4) {
947         return EXIT_FAILURE;
948     } else {
949         *DA_x0 = (OPJ_UINT32)values[0];
950         *DA_y0 = (OPJ_UINT32)values[1];
951         *DA_x1 = (OPJ_UINT32)values[2];
952         *DA_y1 = (OPJ_UINT32)values[3];
953         return EXIT_SUCCESS;
954     }
955 }
956
957 OPJ_FLOAT64 opj_clock(void)
958 {
959 #ifdef _WIN32
960     /* _WIN32: use QueryPerformance (very accurate) */
961     LARGE_INTEGER freq, t ;
962     /* freq is the clock speed of the CPU */
963     QueryPerformanceFrequency(&freq) ;
964     /* cout << "freq = " << ((double) freq.QuadPart) << endl; */
965     /* t is the high resolution performance counter (see MSDN) */
966     QueryPerformanceCounter(& t) ;
967     return freq.QuadPart ? ((OPJ_FLOAT64)t.QuadPart / (OPJ_FLOAT64)freq.QuadPart) :
968            0;
969 #elif defined(__linux)
970     struct timespec ts;
971     clock_gettime(CLOCK_REALTIME, &ts);
972     return ((OPJ_FLOAT64)ts.tv_sec + (OPJ_FLOAT64)ts.tv_nsec * 1e-9);
973 #else
974     /* Unix : use resource usage */
975     /* FIXME: this counts the total CPU time, instead of the user perceived time */
976     struct rusage t;
977     OPJ_FLOAT64 procTime;
978     /* (1) Get the rusage data structure at this moment (man getrusage) */
979     getrusage(0, &t);
980     /* (2) What is the elapsed time ? - CPU time = User time + System time */
981     /* (2a) Get the seconds */
982     procTime = (OPJ_FLOAT64)(t.ru_utime.tv_sec + t.ru_stime.tv_sec);
983     /* (2b) More precisely! Get the microseconds part ! */
984     return (procTime + (OPJ_FLOAT64)(t.ru_utime.tv_usec + t.ru_stime.tv_usec) *
985             1e-6) ;
986 #endif
987 }
988
989 /* -------------------------------------------------------------------------- */
990
991 /**
992 sample error callback expecting a FILE* client object
993 */
994 static void error_callback(const char *msg, void *client_data)
995 {
996     (void)client_data;
997     fprintf(stdout, "[ERROR] %s", msg);
998 }
999 /**
1000 sample warning callback expecting a FILE* client object
1001 */
1002 static void warning_callback(const char *msg, void *client_data)
1003 {
1004     (void)client_data;
1005     fprintf(stdout, "[WARNING] %s", msg);
1006 }
1007 /**
1008 sample debug callback expecting no client object
1009 */
1010 static void info_callback(const char *msg, void *client_data)
1011 {
1012     (void)client_data;
1013     fprintf(stdout, "[INFO] %s", msg);
1014 }
1015 /**
1016 sample quiet callback expecting no client object
1017 */
1018 static void quiet_callback(const char *msg, void *client_data)
1019 {
1020     (void)msg;
1021     (void)client_data;
1022 }
1023
1024 static void set_default_parameters(opj_decompress_parameters* parameters)
1025 {
1026     if (parameters) {
1027         memset(parameters, 0, sizeof(opj_decompress_parameters));
1028
1029         /* default decoding parameters (command line specific) */
1030         parameters->decod_format = -1;
1031         parameters->cod_format = -1;
1032
1033         /* default decoding parameters (core) */
1034         opj_set_default_decoder_parameters(&(parameters->core));
1035     }
1036 }
1037
1038 static void destroy_parameters(opj_decompress_parameters* parameters)
1039 {
1040     if (parameters) {
1041         if (parameters->precision) {
1042             free(parameters->precision);
1043             parameters->precision = NULL;
1044         }
1045
1046         free(parameters->comps_indices);
1047         parameters->comps_indices = NULL;
1048     }
1049 }
1050
1051 /* -------------------------------------------------------------------------- */
1052
1053 static opj_image_t* convert_gray_to_rgb(opj_image_t* original)
1054 {
1055     OPJ_UINT32 compno;
1056     opj_image_t* l_new_image = NULL;
1057     opj_image_cmptparm_t* l_new_components = NULL;
1058
1059     l_new_components = (opj_image_cmptparm_t*)malloc((original->numcomps + 2U) *
1060                        sizeof(opj_image_cmptparm_t));
1061     if (l_new_components == NULL) {
1062         fprintf(stderr,
1063                 "ERROR -> opj_decompress: failed to allocate memory for RGB image!\n");
1064         opj_image_destroy(original);
1065         return NULL;
1066     }
1067
1068     l_new_components[0].bpp  = l_new_components[1].bpp  = l_new_components[2].bpp  =
1069                                    original->comps[0].bpp;
1070     l_new_components[0].dx   = l_new_components[1].dx   = l_new_components[2].dx   =
1071                                    original->comps[0].dx;
1072     l_new_components[0].dy   = l_new_components[1].dy   = l_new_components[2].dy   =
1073                                    original->comps[0].dy;
1074     l_new_components[0].h    = l_new_components[1].h    = l_new_components[2].h    =
1075                                    original->comps[0].h;
1076     l_new_components[0].w    = l_new_components[1].w    = l_new_components[2].w    =
1077                                    original->comps[0].w;
1078     l_new_components[0].prec = l_new_components[1].prec = l_new_components[2].prec =
1079                                    original->comps[0].prec;
1080     l_new_components[0].sgnd = l_new_components[1].sgnd = l_new_components[2].sgnd =
1081                                    original->comps[0].sgnd;
1082     l_new_components[0].x0   = l_new_components[1].x0   = l_new_components[2].x0   =
1083                                    original->comps[0].x0;
1084     l_new_components[0].y0   = l_new_components[1].y0   = l_new_components[2].y0   =
1085                                    original->comps[0].y0;
1086
1087     for (compno = 1U; compno < original->numcomps; ++compno) {
1088         l_new_components[compno + 2U].bpp  = original->comps[compno].bpp;
1089         l_new_components[compno + 2U].dx   = original->comps[compno].dx;
1090         l_new_components[compno + 2U].dy   = original->comps[compno].dy;
1091         l_new_components[compno + 2U].h    = original->comps[compno].h;
1092         l_new_components[compno + 2U].w    = original->comps[compno].w;
1093         l_new_components[compno + 2U].prec = original->comps[compno].prec;
1094         l_new_components[compno + 2U].sgnd = original->comps[compno].sgnd;
1095         l_new_components[compno + 2U].x0   = original->comps[compno].x0;
1096         l_new_components[compno + 2U].y0   = original->comps[compno].y0;
1097     }
1098
1099     l_new_image = opj_image_create(original->numcomps + 2U, l_new_components,
1100                                    OPJ_CLRSPC_SRGB);
1101     free(l_new_components);
1102     if (l_new_image == NULL) {
1103         fprintf(stderr,
1104                 "ERROR -> opj_decompress: failed to allocate memory for RGB image!\n");
1105         opj_image_destroy(original);
1106         return NULL;
1107     }
1108
1109     l_new_image->x0 = original->x0;
1110     l_new_image->x1 = original->x1;
1111     l_new_image->y0 = original->y0;
1112     l_new_image->y1 = original->y1;
1113
1114     l_new_image->comps[0].factor        = l_new_image->comps[1].factor        =
1115             l_new_image->comps[2].factor        = original->comps[0].factor;
1116     l_new_image->comps[0].alpha         = l_new_image->comps[1].alpha         =
1117             l_new_image->comps[2].alpha         = original->comps[0].alpha;
1118     l_new_image->comps[0].resno_decoded = l_new_image->comps[1].resno_decoded =
1119             l_new_image->comps[2].resno_decoded = original->comps[0].resno_decoded;
1120
1121     memcpy(l_new_image->comps[0].data, original->comps[0].data,
1122            sizeof(OPJ_INT32) * original->comps[0].w * original->comps[0].h);
1123     memcpy(l_new_image->comps[1].data, original->comps[0].data,
1124            sizeof(OPJ_INT32) * original->comps[0].w * original->comps[0].h);
1125     memcpy(l_new_image->comps[2].data, original->comps[0].data,
1126            sizeof(OPJ_INT32) * original->comps[0].w * original->comps[0].h);
1127
1128     for (compno = 1U; compno < original->numcomps; ++compno) {
1129         l_new_image->comps[compno + 2U].factor        = original->comps[compno].factor;
1130         l_new_image->comps[compno + 2U].alpha         = original->comps[compno].alpha;
1131         l_new_image->comps[compno + 2U].resno_decoded =
1132             original->comps[compno].resno_decoded;
1133         memcpy(l_new_image->comps[compno + 2U].data, original->comps[compno].data,
1134                sizeof(OPJ_INT32) * original->comps[compno].w * original->comps[compno].h);
1135     }
1136     opj_image_destroy(original);
1137     return l_new_image;
1138 }
1139
1140 /* -------------------------------------------------------------------------- */
1141
1142 static opj_image_t* upsample_image_components(opj_image_t* original)
1143 {
1144     opj_image_t* l_new_image = NULL;
1145     opj_image_cmptparm_t* l_new_components = NULL;
1146     OPJ_BOOL l_upsample_need = OPJ_FALSE;
1147     OPJ_UINT32 compno;
1148
1149     for (compno = 0U; compno < original->numcomps; ++compno) {
1150         if (original->comps[compno].factor > 0U) {
1151             fprintf(stderr,
1152                     "ERROR -> opj_decompress: -upsample not supported with reduction\n");
1153             opj_image_destroy(original);
1154             return NULL;
1155         }
1156         if ((original->comps[compno].dx > 1U) || (original->comps[compno].dy > 1U)) {
1157             l_upsample_need = OPJ_TRUE;
1158             break;
1159         }
1160     }
1161     if (!l_upsample_need) {
1162         return original;
1163     }
1164     /* Upsample is needed */
1165     l_new_components = (opj_image_cmptparm_t*)malloc(original->numcomps * sizeof(
1166                            opj_image_cmptparm_t));
1167     if (l_new_components == NULL) {
1168         fprintf(stderr,
1169                 "ERROR -> opj_decompress: failed to allocate memory for upsampled components!\n");
1170         opj_image_destroy(original);
1171         return NULL;
1172     }
1173
1174     for (compno = 0U; compno < original->numcomps; ++compno) {
1175         opj_image_cmptparm_t* l_new_cmp = &(l_new_components[compno]);
1176         opj_image_comp_t*     l_org_cmp = &(original->comps[compno]);
1177
1178         l_new_cmp->bpp  = l_org_cmp->bpp;
1179         l_new_cmp->prec = l_org_cmp->prec;
1180         l_new_cmp->sgnd = l_org_cmp->sgnd;
1181         l_new_cmp->x0   = original->x0;
1182         l_new_cmp->y0   = original->y0;
1183         l_new_cmp->dx   = 1;
1184         l_new_cmp->dy   = 1;
1185         l_new_cmp->w    =
1186             l_org_cmp->w; /* should be original->x1 - original->x0 for dx==1 */
1187         l_new_cmp->h    =
1188             l_org_cmp->h; /* should be original->y1 - original->y0 for dy==0 */
1189
1190         if (l_org_cmp->dx > 1U) {
1191             l_new_cmp->w = original->x1 - original->x0;
1192         }
1193
1194         if (l_org_cmp->dy > 1U) {
1195             l_new_cmp->h = original->y1 - original->y0;
1196         }
1197     }
1198
1199     l_new_image = opj_image_create(original->numcomps, l_new_components,
1200                                    original->color_space);
1201     free(l_new_components);
1202     if (l_new_image == NULL) {
1203         fprintf(stderr,
1204                 "ERROR -> opj_decompress: failed to allocate memory for upsampled components!\n");
1205         opj_image_destroy(original);
1206         return NULL;
1207     }
1208
1209     l_new_image->x0 = original->x0;
1210     l_new_image->x1 = original->x1;
1211     l_new_image->y0 = original->y0;
1212     l_new_image->y1 = original->y1;
1213
1214     for (compno = 0U; compno < original->numcomps; ++compno) {
1215         opj_image_comp_t* l_new_cmp = &(l_new_image->comps[compno]);
1216         opj_image_comp_t* l_org_cmp = &(original->comps[compno]);
1217
1218         l_new_cmp->factor        = l_org_cmp->factor;
1219         l_new_cmp->alpha         = l_org_cmp->alpha;
1220         l_new_cmp->resno_decoded = l_org_cmp->resno_decoded;
1221
1222         if ((l_org_cmp->dx > 1U) || (l_org_cmp->dy > 1U)) {
1223             const OPJ_INT32* l_src = l_org_cmp->data;
1224             OPJ_INT32*       l_dst = l_new_cmp->data;
1225             OPJ_UINT32 y;
1226             OPJ_UINT32 xoff, yoff;
1227
1228             /* need to take into account dx & dy */
1229             xoff = l_org_cmp->dx * l_org_cmp->x0 -  original->x0;
1230             yoff = l_org_cmp->dy * l_org_cmp->y0 -  original->y0;
1231             if ((xoff >= l_org_cmp->dx) || (yoff >= l_org_cmp->dy)) {
1232                 fprintf(stderr,
1233                         "ERROR -> opj_decompress: Invalid image/component parameters found when upsampling\n");
1234                 opj_image_destroy(original);
1235                 opj_image_destroy(l_new_image);
1236                 return NULL;
1237             }
1238
1239             for (y = 0U; y < yoff; ++y) {
1240                 memset(l_dst, 0U, l_new_cmp->w * sizeof(OPJ_INT32));
1241                 l_dst += l_new_cmp->w;
1242             }
1243
1244             if (l_new_cmp->h > (l_org_cmp->dy -
1245                                 1U)) { /* check subtraction overflow for really small images */
1246                 for (; y < l_new_cmp->h - (l_org_cmp->dy - 1U); y += l_org_cmp->dy) {
1247                     OPJ_UINT32 x, dy;
1248                     OPJ_UINT32 xorg;
1249
1250                     xorg = 0U;
1251                     for (x = 0U; x < xoff; ++x) {
1252                         l_dst[x] = 0;
1253                     }
1254                     if (l_new_cmp->w > (l_org_cmp->dx -
1255                                         1U)) { /* check subtraction overflow for really small images */
1256                         for (; x < l_new_cmp->w - (l_org_cmp->dx - 1U); x += l_org_cmp->dx, ++xorg) {
1257                             OPJ_UINT32 dx;
1258                             for (dx = 0U; dx < l_org_cmp->dx; ++dx) {
1259                                 l_dst[x + dx] = l_src[xorg];
1260                             }
1261                         }
1262                     }
1263                     for (; x < l_new_cmp->w; ++x) {
1264                         l_dst[x] = l_src[xorg];
1265                     }
1266                     l_dst += l_new_cmp->w;
1267
1268                     for (dy = 1U; dy < l_org_cmp->dy; ++dy) {
1269                         memcpy(l_dst, l_dst - l_new_cmp->w, l_new_cmp->w * sizeof(OPJ_INT32));
1270                         l_dst += l_new_cmp->w;
1271                     }
1272                     l_src += l_org_cmp->w;
1273                 }
1274             }
1275             if (y < l_new_cmp->h) {
1276                 OPJ_UINT32 x;
1277                 OPJ_UINT32 xorg;
1278
1279                 xorg = 0U;
1280                 for (x = 0U; x < xoff; ++x) {
1281                     l_dst[x] = 0;
1282                 }
1283                 if (l_new_cmp->w > (l_org_cmp->dx -
1284                                     1U)) { /* check subtraction overflow for really small images */
1285                     for (; x < l_new_cmp->w - (l_org_cmp->dx - 1U); x += l_org_cmp->dx, ++xorg) {
1286                         OPJ_UINT32 dx;
1287                         for (dx = 0U; dx < l_org_cmp->dx; ++dx) {
1288                             l_dst[x + dx] = l_src[xorg];
1289                         }
1290                     }
1291                 }
1292                 for (; x < l_new_cmp->w; ++x) {
1293                     l_dst[x] = l_src[xorg];
1294                 }
1295                 l_dst += l_new_cmp->w;
1296                 ++y;
1297                 for (; y < l_new_cmp->h; ++y) {
1298                     memcpy(l_dst, l_dst - l_new_cmp->w, l_new_cmp->w * sizeof(OPJ_INT32));
1299                     l_dst += l_new_cmp->w;
1300                 }
1301             }
1302         } else {
1303             memcpy(l_new_cmp->data, l_org_cmp->data,
1304                    sizeof(OPJ_INT32) * l_org_cmp->w * l_org_cmp->h);
1305         }
1306     }
1307     opj_image_destroy(original);
1308     return l_new_image;
1309 }
1310
1311 /* -------------------------------------------------------------------------- */
1312 /**
1313  * OPJ_DECOMPRESS MAIN
1314  */
1315 /* -------------------------------------------------------------------------- */
1316 int main(int argc, char **argv)
1317 {
1318     opj_decompress_parameters parameters;           /* decompression parameters */
1319     opj_image_t* image = NULL;
1320     opj_stream_t *l_stream = NULL;              /* Stream */
1321     opj_codec_t* l_codec = NULL;                /* Handle to a decompressor */
1322     opj_codestream_index_t* cstr_index = NULL;
1323
1324     OPJ_INT32 num_images, imageno;
1325     img_fol_t img_fol;
1326     dircnt_t *dirptr = NULL;
1327     int failed = 0;
1328     OPJ_FLOAT64 t, tCumulative = 0;
1329     OPJ_UINT32 numDecompressedImages = 0;
1330     OPJ_UINT32 cp_reduce;
1331
1332     /* set decoding parameters to default values */
1333     set_default_parameters(&parameters);
1334
1335     /* Initialize img_fol */
1336     memset(&img_fol, 0, sizeof(img_fol_t));
1337
1338     /* parse input and get user encoding parameters */
1339     if (parse_cmdline_decoder(argc, argv, &parameters, &img_fol) == 1) {
1340         failed = 1;
1341         goto fin;
1342     }
1343
1344     cp_reduce = parameters.core.cp_reduce;
1345     if (getenv("USE_OPJ_SET_DECODED_RESOLUTION_FACTOR") != NULL) {
1346         /* For debugging/testing purposes, do not set the cp_reduce member */
1347         /* if USE_OPJ_SET_DECODED_RESOLUTION_FACTOR is defined, but used */
1348         /* the opj_set_decoded_resolution_factor() API instead */
1349         parameters.core.cp_reduce = 0;
1350     }
1351
1352
1353     /* Initialize reading of directory */
1354     if (img_fol.set_imgdir == 1) {
1355         int it_image;
1356         num_images = get_num_images(img_fol.imgdirpath);
1357
1358         dirptr = (dircnt_t*)malloc(sizeof(dircnt_t));
1359         if (!dirptr) {
1360             destroy_parameters(&parameters);
1361             return EXIT_FAILURE;
1362         }
1363         /* Stores at max 10 image file names */
1364         dirptr->filename_buf = (char*)malloc(sizeof(char) *
1365                                              (size_t)num_images * OPJ_PATH_LEN);
1366         if (!dirptr->filename_buf) {
1367             failed = 1;
1368             goto fin;
1369         }
1370
1371         dirptr->filename = (char**) malloc((size_t)num_images * sizeof(char*));
1372
1373         if (!dirptr->filename) {
1374             failed = 1;
1375             goto fin;
1376         }
1377         for (it_image = 0; it_image < num_images; it_image++) {
1378             dirptr->filename[it_image] = dirptr->filename_buf + it_image * OPJ_PATH_LEN;
1379         }
1380
1381         if (load_images(dirptr, img_fol.imgdirpath) == 1) {
1382             failed = 1;
1383             goto fin;
1384         }
1385         if (num_images == 0) {
1386             fprintf(stderr, "Folder is empty\n");
1387             failed = 1;
1388             goto fin;
1389         }
1390     } else {
1391         num_images = 1;
1392     }
1393
1394     /*Decoding image one by one*/
1395     for (imageno = 0; imageno < num_images ; imageno++)  {
1396
1397         if (!parameters.quiet) {
1398             fprintf(stderr, "\n");
1399         }
1400
1401         if (img_fol.set_imgdir == 1) {
1402             if (get_next_file(imageno, dirptr, &img_fol, &parameters)) {
1403                 fprintf(stderr, "skipping file...\n");
1404                 destroy_parameters(&parameters);
1405                 continue;
1406             }
1407         }
1408
1409         /* read the input file and put it in memory */
1410         /* ---------------------------------------- */
1411
1412         l_stream = opj_stream_create_default_file_stream(parameters.infile, 1);
1413         if (!l_stream) {
1414             fprintf(stderr, "ERROR -> failed to create the stream from the file %s\n",
1415                     parameters.infile);
1416             failed = 1;
1417             goto fin;
1418         }
1419
1420         /* decode the JPEG2000 stream */
1421         /* ---------------------- */
1422
1423         switch (parameters.decod_format) {
1424         case J2K_CFMT: { /* JPEG-2000 codestream */
1425             /* Get a decoder handle */
1426             l_codec = opj_create_decompress(OPJ_CODEC_J2K);
1427             break;
1428         }
1429         case JP2_CFMT: { /* JPEG 2000 compressed image data */
1430             /* Get a decoder handle */
1431             l_codec = opj_create_decompress(OPJ_CODEC_JP2);
1432             break;
1433         }
1434         case JPT_CFMT: { /* JPEG 2000, JPIP */
1435             /* Get a decoder handle */
1436             l_codec = opj_create_decompress(OPJ_CODEC_JPT);
1437             break;
1438         }
1439         default:
1440             fprintf(stderr, "skipping file..\n");
1441             destroy_parameters(&parameters);
1442             opj_stream_destroy(l_stream);
1443             continue;
1444         }
1445
1446         if (parameters.quiet) {
1447             /* Set all callbacks to quiet */
1448             opj_set_info_handler(l_codec, quiet_callback, 00);
1449             opj_set_warning_handler(l_codec, quiet_callback, 00);
1450             opj_set_error_handler(l_codec, quiet_callback, 00);
1451         } else {
1452             /* catch events using our callbacks and give a local context */
1453             opj_set_info_handler(l_codec, info_callback, 00);
1454             opj_set_warning_handler(l_codec, warning_callback, 00);
1455             opj_set_error_handler(l_codec, error_callback, 00);
1456         }
1457
1458
1459         t = opj_clock();
1460
1461         /* Setup the decoder decoding parameters using user parameters */
1462         if (!opj_setup_decoder(l_codec, &(parameters.core))) {
1463             fprintf(stderr, "ERROR -> opj_decompress: failed to setup the decoder\n");
1464             opj_stream_destroy(l_stream);
1465             opj_destroy_codec(l_codec);
1466             failed = 1;
1467             goto fin;
1468         }
1469
1470         if (parameters.num_threads >= 1 &&
1471                 !opj_codec_set_threads(l_codec, parameters.num_threads)) {
1472             fprintf(stderr, "ERROR -> opj_decompress: failed to set number of threads\n");
1473             opj_stream_destroy(l_stream);
1474             opj_destroy_codec(l_codec);
1475             failed = 1;
1476             goto fin;
1477         }
1478
1479         /* Read the main header of the codestream and if necessary the JP2 boxes*/
1480         if (! opj_read_header(l_stream, l_codec, &image)) {
1481             fprintf(stderr, "ERROR -> opj_decompress: failed to read the header\n");
1482             opj_stream_destroy(l_stream);
1483             opj_destroy_codec(l_codec);
1484             opj_image_destroy(image);
1485             failed = 1;
1486             goto fin;
1487         }
1488
1489         if (parameters.numcomps) {
1490             if (! opj_set_decoded_components(l_codec,
1491                                              parameters.numcomps,
1492                                              parameters.comps_indices,
1493                                              OPJ_FALSE)) {
1494                 fprintf(stderr,
1495                         "ERROR -> opj_decompress: failed to set the component indices!\n");
1496                 opj_destroy_codec(l_codec);
1497                 opj_stream_destroy(l_stream);
1498                 opj_image_destroy(image);
1499                 failed = 1;
1500                 goto fin;
1501             }
1502         }
1503
1504         if (getenv("USE_OPJ_SET_DECODED_RESOLUTION_FACTOR") != NULL) {
1505             /* For debugging/testing purposes, and also an illustration on how to */
1506             /* use the alternative API opj_set_decoded_resolution_factor() instead */
1507             /* of setting parameters.cp_reduce */
1508             if (! opj_set_decoded_resolution_factor(l_codec, cp_reduce)) {
1509                 fprintf(stderr,
1510                         "ERROR -> opj_decompress: failed to set the resolution factor tile!\n");
1511                 opj_destroy_codec(l_codec);
1512                 opj_stream_destroy(l_stream);
1513                 opj_image_destroy(image);
1514                 failed = 1;
1515                 goto fin;
1516             }
1517         }
1518
1519         if (!parameters.nb_tile_to_decode) {
1520             if (getenv("SKIP_OPJ_SET_DECODE_AREA") != NULL &&
1521                     parameters.DA_x0 == 0 &&
1522                     parameters.DA_y0 == 0 &&
1523                     parameters.DA_x1 == 0 &&
1524                     parameters.DA_y1 == 0) {
1525                 /* For debugging/testing purposes, */
1526                 /* do nothing if SKIP_OPJ_SET_DECODE_AREA env variable */
1527                 /* is defined and no decoded area has been set */
1528             }
1529             /* Optional if you want decode the entire image */
1530             else if (!opj_set_decode_area(l_codec, image, (OPJ_INT32)parameters.DA_x0,
1531                                           (OPJ_INT32)parameters.DA_y0, (OPJ_INT32)parameters.DA_x1,
1532                                           (OPJ_INT32)parameters.DA_y1)) {
1533                 fprintf(stderr, "ERROR -> opj_decompress: failed to set the decoded area\n");
1534                 opj_stream_destroy(l_stream);
1535                 opj_destroy_codec(l_codec);
1536                 opj_image_destroy(image);
1537                 failed = 1;
1538                 goto fin;
1539             }
1540
1541             /* Get the decoded image */
1542             if (!(opj_decode(l_codec, l_stream, image) &&
1543                     opj_end_decompress(l_codec,   l_stream))) {
1544                 fprintf(stderr, "ERROR -> opj_decompress: failed to decode image!\n");
1545                 opj_destroy_codec(l_codec);
1546                 opj_stream_destroy(l_stream);
1547                 opj_image_destroy(image);
1548                 failed = 1;
1549                 goto fin;
1550             }
1551         } else {
1552             if (!(parameters.DA_x0 == 0 &&
1553                     parameters.DA_y0 == 0 &&
1554                     parameters.DA_x1 == 0 &&
1555                     parameters.DA_y1 == 0)) {
1556                 if (!(parameters.quiet)) {
1557                     fprintf(stderr, "WARNING: -d option ignored when used together with -t\n");
1558                 }
1559             }
1560
1561             if (!opj_get_decoded_tile(l_codec, l_stream, image, parameters.tile_index)) {
1562                 fprintf(stderr, "ERROR -> opj_decompress: failed to decode tile!\n");
1563                 opj_destroy_codec(l_codec);
1564                 opj_stream_destroy(l_stream);
1565                 opj_image_destroy(image);
1566                 failed = 1;
1567                 goto fin;
1568             }
1569             if (!(parameters.quiet)) {
1570                 fprintf(stdout, "tile %d is decoded!\n\n", parameters.tile_index);
1571             }
1572         }
1573
1574         tCumulative += opj_clock() - t;
1575         numDecompressedImages++;
1576
1577         /* Close the byte stream */
1578         opj_stream_destroy(l_stream);
1579
1580         if (image->color_space != OPJ_CLRSPC_SYCC
1581                 && image->numcomps == 3 && image->comps[0].dx == image->comps[0].dy
1582                 && image->comps[1].dx != 1) {
1583             image->color_space = OPJ_CLRSPC_SYCC;
1584         } else if (image->numcomps <= 2) {
1585             image->color_space = OPJ_CLRSPC_GRAY;
1586         }
1587
1588         if (image->color_space == OPJ_CLRSPC_SYCC) {
1589             color_sycc_to_rgb(image);
1590         } else if ((image->color_space == OPJ_CLRSPC_CMYK) &&
1591                    (parameters.cod_format != TIF_DFMT)) {
1592             color_cmyk_to_rgb(image);
1593         } else if (image->color_space == OPJ_CLRSPC_EYCC) {
1594             color_esycc_to_rgb(image);
1595         }
1596
1597         if (image->icc_profile_buf) {
1598 #if defined(OPJ_HAVE_LIBLCMS1) || defined(OPJ_HAVE_LIBLCMS2)
1599             if (image->icc_profile_len) {
1600                 color_apply_icc_profile(image);
1601             } else {
1602                 color_cielab_to_rgb(image);
1603             }
1604 #endif
1605             free(image->icc_profile_buf);
1606             image->icc_profile_buf = NULL;
1607             image->icc_profile_len = 0;
1608         }
1609
1610         /* Force output precision */
1611         /* ---------------------- */
1612         if (parameters.precision != NULL) {
1613             OPJ_UINT32 compno;
1614             for (compno = 0; compno < image->numcomps; ++compno) {
1615                 OPJ_UINT32 precno = compno;
1616                 OPJ_UINT32 prec;
1617
1618                 if (precno >= parameters.nb_precision) {
1619                     precno = parameters.nb_precision - 1U;
1620                 }
1621
1622                 prec = parameters.precision[precno].prec;
1623                 if (prec == 0) {
1624                     prec = image->comps[compno].prec;
1625                 }
1626
1627                 switch (parameters.precision[precno].mode) {
1628                 case OPJ_PREC_MODE_CLIP:
1629                     clip_component(&(image->comps[compno]), prec);
1630                     break;
1631                 case OPJ_PREC_MODE_SCALE:
1632                     scale_component(&(image->comps[compno]), prec);
1633                     break;
1634                 default:
1635                     break;
1636                 }
1637
1638             }
1639         }
1640
1641         /* Upsample components */
1642         /* ------------------- */
1643         if (parameters.upsample) {
1644             image = upsample_image_components(image);
1645             if (image == NULL) {
1646                 fprintf(stderr,
1647                         "ERROR -> opj_decompress: failed to upsample image components!\n");
1648                 opj_destroy_codec(l_codec);
1649                 failed = 1;
1650                 goto fin;
1651             }
1652         }
1653
1654         /* Force RGB output */
1655         /* ---------------- */
1656         if (parameters.force_rgb) {
1657             switch (image->color_space) {
1658             case OPJ_CLRSPC_SRGB:
1659                 break;
1660             case OPJ_CLRSPC_GRAY:
1661                 image = convert_gray_to_rgb(image);
1662                 break;
1663             default:
1664                 fprintf(stderr,
1665                         "ERROR -> opj_decompress: don't know how to convert image to RGB colorspace!\n");
1666                 opj_image_destroy(image);
1667                 image = NULL;
1668                 break;
1669             }
1670             if (image == NULL) {
1671                 fprintf(stderr, "ERROR -> opj_decompress: failed to convert to RGB image!\n");
1672                 opj_destroy_codec(l_codec);
1673                 failed = 1;
1674                 goto fin;
1675             }
1676         }
1677
1678         /* create output image */
1679         /* ------------------- */
1680         switch (parameters.cod_format) {
1681         case PXM_DFMT:          /* PNM PGM PPM */
1682             if (imagetopnm(image, parameters.outfile, parameters.split_pnm)) {
1683                 fprintf(stderr, "[ERROR] Outfile %s not generated\n", parameters.outfile);
1684                 failed = 1;
1685             } else if (!(parameters.quiet)) {
1686                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1687             }
1688             break;
1689
1690         case PGX_DFMT:          /* PGX */
1691             if (imagetopgx(image, parameters.outfile)) {
1692                 fprintf(stderr, "[ERROR] Outfile %s not generated\n", parameters.outfile);
1693                 failed = 1;
1694             } else if (!(parameters.quiet)) {
1695                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1696             }
1697             break;
1698
1699         case BMP_DFMT:          /* BMP */
1700             if (imagetobmp(image, parameters.outfile)) {
1701                 fprintf(stderr, "[ERROR] Outfile %s not generated\n", parameters.outfile);
1702                 failed = 1;
1703             } else if (!(parameters.quiet)) {
1704                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1705             }
1706             break;
1707 #ifdef OPJ_HAVE_LIBTIFF
1708         case TIF_DFMT:          /* TIFF */
1709             if (imagetotif(image, parameters.outfile)) {
1710                 fprintf(stderr, "[ERROR] Outfile %s not generated\n", parameters.outfile);
1711                 failed = 1;
1712             } else if (!(parameters.quiet)) {
1713                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1714             }
1715             break;
1716 #endif /* OPJ_HAVE_LIBTIFF */
1717         case RAW_DFMT:          /* RAW */
1718             if (imagetoraw(image, parameters.outfile)) {
1719                 fprintf(stderr, "[ERROR] Error generating raw file. Outfile %s not generated\n",
1720                         parameters.outfile);
1721                 failed = 1;
1722             } else if (!(parameters.quiet)) {
1723                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1724             }
1725             break;
1726
1727         case RAWL_DFMT:         /* RAWL */
1728             if (imagetorawl(image, parameters.outfile)) {
1729                 fprintf(stderr,
1730                         "[ERROR] Error generating rawl file. Outfile %s not generated\n",
1731                         parameters.outfile);
1732                 failed = 1;
1733             } else if (!(parameters.quiet)) {
1734                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1735             }
1736             break;
1737
1738         case TGA_DFMT:          /* TGA */
1739             if (imagetotga(image, parameters.outfile)) {
1740                 fprintf(stderr, "[ERROR] Error generating tga file. Outfile %s not generated\n",
1741                         parameters.outfile);
1742                 failed = 1;
1743             } else if (!(parameters.quiet)) {
1744                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1745             }
1746             break;
1747 #ifdef OPJ_HAVE_LIBPNG
1748         case PNG_DFMT:          /* PNG */
1749             if (imagetopng(image, parameters.outfile)) {
1750                 fprintf(stderr, "[ERROR] Error generating png file. Outfile %s not generated\n",
1751                         parameters.outfile);
1752                 failed = 1;
1753             } else if (!(parameters.quiet)) {
1754                 fprintf(stdout, "[INFO] Generated Outfile %s\n", parameters.outfile);
1755             }
1756             break;
1757 #endif /* OPJ_HAVE_LIBPNG */
1758         /* Can happen if output file is TIFF or PNG
1759          * and OPJ_HAVE_LIBTIF or OPJ_HAVE_LIBPNG is undefined
1760         */
1761         default:
1762             fprintf(stderr, "[ERROR] Outfile %s not generated\n", parameters.outfile);
1763             failed = 1;
1764         }
1765
1766         /* free remaining structures */
1767         if (l_codec) {
1768             opj_destroy_codec(l_codec);
1769         }
1770
1771
1772         /* free image data structure */
1773         opj_image_destroy(image);
1774
1775         /* destroy the codestream index */
1776         opj_destroy_cstr_index(&cstr_index);
1777
1778         if (failed) {
1779             (void)remove(parameters.outfile);    /* ignore return value */
1780         }
1781     }
1782 fin:
1783     destroy_parameters(&parameters);
1784     if (failed && img_fol.imgdirpath) {
1785         free(img_fol.imgdirpath);
1786     }
1787     if (dirptr) {
1788         if (dirptr->filename) {
1789             free(dirptr->filename);
1790         }
1791         if (dirptr->filename_buf) {
1792             free(dirptr->filename_buf);
1793         }
1794         free(dirptr);
1795     }
1796     if (numDecompressedImages && !failed && !(parameters.quiet)) {
1797         fprintf(stdout, "decode time: %d ms\n",
1798                 (int)((tCumulative * 1000.0) / (OPJ_FLOAT64)numDecompressedImages));
1799     }
1800     return failed ? EXIT_FAILURE : EXIT_SUCCESS;
1801 }
1802 /*end main()*/