Provide safer string copy than strncpy
[openjpeg.git] / src / bin / jp2 / opj_decompress.c
index c97835a89312017d1adabd367d0b8deabfd4eae2..3db36ebe6d53f7c35699ecba9a367a7378e6ddd4 100644 (file)
@@ -56,6 +56,9 @@
 #define strncasecmp _strnicmp
 #else
 #include <strings.h>
+#include <sys/time.h>
+#include <sys/resource.h>
+#include <sys/times.h>
 #endif /* _WIN32 */
 
 #include "openjpeg.h"
@@ -72,6 +75,7 @@
 #include "color.h"
 
 #include "format_defs.h"
+#include "opj_string.h"
 
 typedef struct dircnt{
        /** Buffer for holding images read from Directory*/
@@ -118,6 +122,8 @@ typedef struct opj_decompress_params
        int decod_format;
        /** output file format 0: PGX, 1: PxM, 2: BMP */
        int cod_format;
+       /** index file name */
+       char indexfilename[OPJ_PATH_LEN];
        
        /** Decoding area left boundary */
        OPJ_UINT32 DA_x0;
@@ -140,6 +146,10 @@ typedef struct opj_decompress_params
        
        /* force output colorspace to RGB */
        int force_rgb;
+       /* upsample components according to their dx/dy values */
+       int upsample;
+       /* split output components to different files */
+       int split_pnm;
 }opj_decompress_parameters;
 
 /* -------------------------------------------------------------------------- */
@@ -150,7 +160,7 @@ int get_file_format(const char *filename);
 char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_decompress_parameters *parameters);
 static int infile_format(const char *fname);
 
-int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *parameters,img_fol_t *img_fol, char *indexfilename);
+int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *parameters,img_fol_t *img_fol);
 int parse_DA_values( char* inArg, unsigned int *DA_x0, unsigned int *DA_y0, unsigned int *DA_x1, unsigned int *DA_y1);
 
 static opj_image_t* convert_gray_to_rgb(opj_image_t* original);
@@ -168,12 +178,12 @@ static void decode_help_display(void) {
                       "        Image file Directory path \n"
                       "  -OutFor <PBM|PGM|PPM|PNM|PAM|PGX|PNG|BMP|TIF|RAW|RAWL|TGA>\n"
                       "    REQUIRED only if -ImgDir is used\n"
-                      "        Output format for decompressed images.\n"
-                      "  -i <compressed file>\n"
+                      "        Output format for decompressed images.\n");
+       fprintf(stdout,"  -i <compressed file>\n"
                       "    REQUIRED only if an Input image directory is not specified\n"
                       "    Currently accepts J2K-files, JP2-files and JPT-files. The file type\n"
-                      "    is identified based on its suffix.\n"
-                      "  -o <decompressed file>\n"
+                      "    is identified based on its suffix.\n");
+       fprintf(stdout,"  -o <decompressed file>\n"
                       "    REQUIRED\n"
                       "    Currently accepts formats specified above (see OutFor option)\n"
                       "    Binary data is written to the file (not ascii). If a PGX\n"
@@ -181,8 +191,8 @@ static void decode_help_display(void) {
                       "    components: an indice starting from 0 will then be appended to the\n"
                       "    output filename, just before the \"pgx\" extension. If a PGM filename\n"
                       "    is given and there are more than one component, only the first component\n"
-                      "    will be written to the file.\n"
-                      "  -r <reduce factor>\n"
+                      "    will be written to the file.\n");
+       fprintf(stdout,"  -r <reduce factor>\n"
                       "    Set the number of highest resolution levels to be discarded. The\n"
                       "    image resolution is effectively divided by 2 to the power of the\n"
                       "    number of discarded levels. The reduce factor is limited by the\n"
@@ -190,8 +200,8 @@ static void decode_help_display(void) {
                       "  -l <number of quality layers to decode>\n"
                       "    Set the maximum number of quality layers to decode. If there are\n"
                       "    less quality layers than the specified number, all the quality layers\n"
-                      "    are decoded.\n"
-                      "  -x  \n" 
+                      "    are decoded.\n");
+       fprintf(stdout,"  -x  \n"
                       "    Create an index file *.Idx (-x index_name.Idx) \n"
                       "  -d <x0,y0,x1,y1>\n"
                       "    OPTIONAL\n"
@@ -200,17 +210,21 @@ static void decode_help_display(void) {
                       "  -t <tile_number>\n"
                       "    OPTIONAL\n"
                       "    Set the tile number of the decoded tile. Follow the JPEG2000 convention from left-up to bottom-up\n"
-                      "    By default all tiles are decoded.\n"
-                      "  -p <comp 0 precision>[C|S][,<comp 1 precision>[C|S][,...]]\n"
+                      "    By default all tiles are decoded.\n");
+       fprintf(stdout,"  -p <comp 0 precision>[C|S][,<comp 1 precision>[C|S][,...]]\n"
                       "    OPTIONAL\n"
-                      "    Force the precision (bit depth) of components.\n"
-                      "    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"
+                      "    Force the precision (bit depth) of components.\n");
+       fprintf(stdout,"    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"
                       "    If there are less values than components, the last value is used for remaining components.\n"
                       "    If 'C' is specified (default), values are clipped.\n"
                       "    If 'S' is specified, values are scaled.\n"
-                      "    A 0 value can be specified (meaning original bit depth).\n"
-                      "  -force-rgb\n"
+                      "    A 0 value can be specified (meaning original bit depth).\n");
+       fprintf(stdout,"  -force-rgb\n"
                       "    Force output image colorspace to RGB\n"
+                      "  -upsample\n"
+                      "    Downsampled components will be upsampled to image size\n"
+                      "  -split-pnm\n"
+                      "    Split output components to different files when writing to PNM\n"
                       "\n");
 /* UniPG>> */
 #ifdef USE_JPWL
@@ -241,7 +255,7 @@ static OPJ_BOOL parse_precision(const char* option, opj_decompress_parameters* p
        
        for(;;)
        {
-               OPJ_UINT32 prec;
+               int prec;
                char mode;
                char comma;
                int count;
@@ -259,7 +273,7 @@ static OPJ_BOOL parse_precision(const char* option, opj_decompress_parameters* p
                        count = 3;
                }
                if (count == 3) {
-                       if (prec > 32U) {
+                       if ((prec < 1) || (prec > 32)) {
                                fprintf(stderr,"Invalid precision %d in precision option %s\n", prec, option);
                                l_result = OPJ_FALSE;
                                break;
@@ -302,7 +316,7 @@ static OPJ_BOOL parse_precision(const char* option, opj_decompress_parameters* p
                                parameters->precision = l_new;
                        }
                        
-                       parameters->precision[parameters->nb_precision].prec = prec;
+                       parameters->precision[parameters->nb_precision].prec = (OPJ_UINT32)prec;
                        switch (mode) {
                                case 'C':
                                        parameters->precision[parameters->nb_precision].mode = OPJ_PREC_MODE_CLIP;
@@ -350,6 +364,7 @@ int get_num_images(char *imgdirpath){
                        continue;
                num_images++;
        }
+       closedir(dir);
        return num_images;
 }
 
@@ -376,6 +391,7 @@ int load_images(dircnt_t *dirptr, char *imgdirpath){
                strcpy(dirptr->filename[i],content->d_name);
                i++;
        }
+       closedir(dir);
        return 0;       
 }
 
@@ -399,6 +415,12 @@ int get_file_format(const char *filename) {
        return -1;
 }
 
+#ifdef _WIN32
+const char* path_separator = "\\";
+#else
+const char* path_separator = "/";
+#endif
+
 /* -------------------------------------------------------------------------- */
 char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_decompress_parameters *parameters){
        char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
@@ -406,11 +428,13 @@ char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_decompre
 
        strcpy(image_filename,dirptr->filename[imageno]);
        fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
-       parameters->decod_format = infile_format(image_filename);
+       sprintf(infilename, "%s%s%s", img_fol->imgdirpath, path_separator, image_filename);
+       parameters->decod_format = infile_format(infilename);
        if (parameters->decod_format == -1)
                return 1;
-       sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
-       strncpy(parameters->infile, infilename, sizeof(infilename));
+       if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile), infilename) != 0) {
+               return 1;
+       }
 
        /*Set output file*/
        strcpy(temp_ofname,strtok(image_filename,"."));
@@ -420,7 +444,9 @@ char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_decompre
        }
        if(img_fol->set_out_format==1){
                sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
-               strncpy(parameters->outfile, outfilename, sizeof(outfilename));
+               if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile), outfilename) != 0) {
+                       return 1;
+               }
        }
        return 0;
 }
@@ -486,13 +512,15 @@ static int infile_format(const char *fname)
  * Parse the command line
  */
 /* -------------------------------------------------------------------------- */
-int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *parameters,img_fol_t *img_fol, char *indexfilename) {
+int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *parameters,img_fol_t *img_fol) {
        /* parse the command line */
        int totlen, c;
        opj_option_t long_option[]={
-               {"ImgDir",    REQ_ARG, NULL ,'y'},
-               {"OutFor",    REQ_ARG, NULL ,'O'},
-               {"force-rgb", NO_ARG,  &(parameters->force_rgb), 1}
+               {"ImgDir",    REQ_ARG, NULL,'y'},
+               {"OutFor",    REQ_ARG, NULL,'O'},
+               {"force-rgb", NO_ARG,  NULL, 1},
+               {"upsample",  NO_ARG,  NULL, 1},
+               {"split-pnm", NO_ARG,  NULL, 1}
        };
 
        const char optlist[] = "i:o:r:l:x:d:t:p:"
@@ -503,6 +531,10 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 #endif /* USE_JPWL */
 /* <<UniPG */
             "h"                ;
+
+       long_option[2].flag = &(parameters->force_rgb);
+       long_option[3].flag = &(parameters->upsample);
+       long_option[4].flag = &(parameters->split_pnm);
        totlen=sizeof(long_option);
        opj_reset_options_reading();
        img_fol->set_out_format = 0;
@@ -536,7 +568,10 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
                                                        infile);
                                                return 1;
                                }
-                               strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
+                               if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile), infile) != 0) {
+                                       fprintf(stderr, "[ERROR] Path is too long\n");
+                                       return 1;
+                               }
                        }
                        break;
                                
@@ -567,7 +602,10 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
                                                fprintf(stderr, "Unknown output format image %s [only *.pnm, *.pgm, *.ppm, *.pgx, *.bmp, *.tif, *.raw or *.tga]!! \n", outfile);
                                                return 1;
                                }
-                               strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
+                               if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile), outfile) != 0) {
+                                       fprintf(stderr, "[ERROR] Path is too long\n");
+                                       return 1;
+                               }
                        }
                        break;
                        
@@ -618,7 +656,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 
                        case 'r':               /* reduce option */
                        {
-                               sscanf(opj_optarg, "%ud", &(parameters->core.cp_reduce));
+                               sscanf(opj_optarg, "%u", &(parameters->core.cp_reduce));
                        }
                        break;
                        
@@ -627,7 +665,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 
                        case 'l':               /* layering option */
                        {
-                               sscanf(opj_optarg, "%ud", &(parameters->core.cp_layer));
+                               sscanf(opj_optarg, "%u", &(parameters->core.cp_layer));
                        }
                        break;
                        
@@ -651,11 +689,14 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 
                        case 'd':               /* Input decode ROI */
                        {
-                               int size_optarg = (int)strlen(opj_optarg) + 1;
-                               char *ROI_values = (char*) malloc((size_t)size_optarg);
+                               size_t size_optarg = (size_t)strlen(opj_optarg) + 1U;
+                               char *ROI_values = (char*) malloc(size_optarg);
+                               if (ROI_values == NULL) {
+                                       fprintf(stderr, "[ERROR] Couldn't allocate memory\n");
+                                       return 1;
+                               }
                                ROI_values[0] = '\0';
-                               strncpy(ROI_values, opj_optarg, strlen(opj_optarg));
-                               ROI_values[strlen(opj_optarg)] = '\0';
+                               memcpy(ROI_values, opj_optarg, size_optarg);
                                /*printf("ROI_values = %s [%d / %d]\n", ROI_values, strlen(ROI_values), size_optarg ); */
                                parse_DA_values( ROI_values, &parameters->DA_x0, &parameters->DA_y0, &parameters->DA_x1, &parameters->DA_y1);
 
@@ -667,7 +708,7 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 
                        case 't':               /* Input tile index */
                        {
-                               sscanf(opj_optarg, "%ud", &parameters->tile_index);
+                               sscanf(opj_optarg, "%u", &parameters->tile_index);
                                parameters->nb_tile_to_decode = 1;
                        }
                        break;
@@ -676,8 +717,10 @@ int parse_cmdline_decoder(int argc, char **argv, opj_decompress_parameters *para
 
                        case 'x':                       /* Creation of index file */
                                {
-                                       char *index = opj_optarg;
-                                       strncpy(indexfilename, index, OPJ_PATH_LEN);
+                                       if (opj_strcpy_s(parameters->indexfilename, sizeof(parameters->indexfilename), opj_optarg) != 0) {
+                                               fprintf(stderr, "[ERROR] Path is too long\n");
+                                               return 1;
+                                       }
                                }
                                break;
                                
@@ -829,6 +872,30 @@ int parse_DA_values( char* inArg, unsigned int *DA_x0, unsigned int *DA_y0, unsi
        }
 }
 
+OPJ_FLOAT64 opj_clock(void) {
+#ifdef _WIN32
+       /* _WIN32: use QueryPerformance (very accurate) */
+    LARGE_INTEGER freq , t ;
+    /* freq is the clock speed of the CPU */
+    QueryPerformanceFrequency(&freq) ;
+       /* cout << "freq = " << ((double) freq.QuadPart) << endl; */
+    /* t is the high resolution performance counter (see MSDN) */
+    QueryPerformanceCounter ( & t ) ;
+       return freq.QuadPart ? (t.QuadPart / (OPJ_FLOAT64)freq.QuadPart) : 0;
+#else
+       /* Unix or Linux: use resource usage */
+    struct rusage t;
+    OPJ_FLOAT64 procTime;
+    /* (1) Get the rusage data structure at this moment (man getrusage) */
+    getrusage(0,&t);
+    /* (2) What is the elapsed time ? - CPU time = User time + System time */
+       /* (2a) Get the seconds */
+    procTime = (OPJ_FLOAT64)(t.ru_utime.tv_sec + t.ru_stime.tv_sec);
+    /* (2b) More precisely! Get the microseconds part ! */
+    return ( procTime + (OPJ_FLOAT64)(t.ru_utime.tv_usec + t.ru_stime.tv_usec) * 1e-6 ) ;
+#endif
+}
+
 /* -------------------------------------------------------------------------- */
 
 /**
@@ -945,6 +1012,166 @@ static opj_image_t* convert_gray_to_rgb(opj_image_t* original)
        return l_new_image;
 }
 
+/* -------------------------------------------------------------------------- */
+
+static opj_image_t* upsample_image_components(opj_image_t* original)
+{
+       opj_image_t* l_new_image = NULL;
+       opj_image_cmptparm_t* l_new_components = NULL;
+       OPJ_BOOL l_upsample_need = OPJ_FALSE;
+       OPJ_UINT32 compno;
+
+       for (compno = 0U; compno < original->numcomps; ++compno) {
+               if (original->comps[compno].factor > 0U) {
+                       fprintf(stderr, "ERROR -> opj_decompress: -upsample not supported with reduction\n");
+                       opj_image_destroy(original);
+                       return NULL;
+               }
+               if ((original->comps[compno].dx > 1U) || (original->comps[compno].dy > 1U)) {
+                       l_upsample_need = OPJ_TRUE;
+                       break;
+               }
+       }
+       if (!l_upsample_need) {
+               return original;
+       }
+       /* Upsample is needed */
+       l_new_components = (opj_image_cmptparm_t*)malloc(original->numcomps * sizeof(opj_image_cmptparm_t));
+       if (l_new_components == NULL) {
+               fprintf(stderr, "ERROR -> opj_decompress: failed to allocate memory for upsampled components!\n");
+               opj_image_destroy(original);
+               return NULL;
+       }
+       
+       for (compno = 0U; compno < original->numcomps; ++compno) {
+               opj_image_cmptparm_t* l_new_cmp = &(l_new_components[compno]);
+               opj_image_comp_t*     l_org_cmp = &(original->comps[compno]);
+               
+               l_new_cmp->bpp  = l_org_cmp->bpp;
+               l_new_cmp->prec = l_org_cmp->prec;
+               l_new_cmp->sgnd = l_org_cmp->sgnd;
+               l_new_cmp->x0   = original->x0;
+               l_new_cmp->y0   = original->y0;
+               l_new_cmp->dx   = 1;
+               l_new_cmp->dy   = 1;
+               l_new_cmp->w    = l_org_cmp->w; /* should be original->x1 - original->x0 for dx==1 */
+               l_new_cmp->h    = l_org_cmp->h; /* should be original->y1 - original->y0 for dy==0 */
+               
+               if (l_org_cmp->dx > 1U) {
+                       l_new_cmp->w = original->x1 - original->x0;
+               }
+               
+               if (l_org_cmp->dy > 1U) {
+                       l_new_cmp->h = original->y1 - original->y0;
+               }
+       }
+       
+       l_new_image = opj_image_create(original->numcomps, l_new_components, original->color_space);
+       free(l_new_components);
+       if (l_new_image == NULL) {
+               fprintf(stderr, "ERROR -> opj_decompress: failed to allocate memory for upsampled components!\n");
+               opj_image_destroy(original);
+               return NULL;
+       }
+       
+       l_new_image->x0 = original->x0;
+       l_new_image->x1 = original->x1;
+       l_new_image->y0 = original->y0;
+       l_new_image->y1 = original->y1;
+       
+       for (compno = 0U; compno < original->numcomps; ++compno) {
+               opj_image_comp_t* l_new_cmp = &(l_new_image->comps[compno]);
+               opj_image_comp_t* l_org_cmp = &(original->comps[compno]);
+               
+               l_new_cmp->factor        = l_org_cmp->factor;
+               l_new_cmp->alpha         = l_org_cmp->alpha;
+               l_new_cmp->resno_decoded = l_org_cmp->resno_decoded;
+               
+               if ((l_org_cmp->dx > 1U) || (l_org_cmp->dy > 1U)) {
+                       const OPJ_INT32* l_src = l_org_cmp->data;
+                       OPJ_INT32*       l_dst = l_new_cmp->data;
+                       OPJ_UINT32 y;
+                       OPJ_UINT32 xoff, yoff;
+                       
+                       /* need to take into account dx & dy */
+                       xoff = l_org_cmp->dx * l_org_cmp->x0 -  original->x0;
+                       yoff = l_org_cmp->dy * l_org_cmp->y0 -  original->y0;
+                       if ((xoff >= l_org_cmp->dx) || (yoff >= l_org_cmp->dy)) {
+                               fprintf(stderr, "ERROR -> opj_decompress: Invalid image/component parameters found when upsampling\n");
+                               opj_image_destroy(original);
+                               opj_image_destroy(l_new_image);
+                               return NULL;
+                       }
+                       
+                       for (y = 0U; y < yoff; ++y) {
+                               memset(l_dst, 0U, l_new_cmp->w * sizeof(OPJ_INT32));
+                               l_dst += l_new_cmp->w;
+                       }
+                       
+                       if(l_new_cmp->h > (l_org_cmp->dy - 1U)) { /* check substraction overflow for really small images */
+                               for (; y < l_new_cmp->h - (l_org_cmp->dy - 1U); y += l_org_cmp->dy) {
+                                       OPJ_UINT32 x, dy;
+                                       OPJ_UINT32 xorg;
+                                       
+                                       xorg = 0U;
+                                       for (x = 0U; x < xoff; ++x) {
+                                               l_dst[x] = 0;
+                                       }
+                                       if (l_new_cmp->w > (l_org_cmp->dx - 1U)) { /* check substraction overflow for really small images */
+                                               for (; x < l_new_cmp->w - (l_org_cmp->dx - 1U); x += l_org_cmp->dx, ++xorg) {
+                                                       OPJ_UINT32 dx;
+                                                       for (dx = 0U; dx < l_org_cmp->dx; ++dx) {
+                                                               l_dst[x + dx] = l_src[xorg];
+                                                       }
+                                               }
+                                       }
+                                       for (; x < l_new_cmp->w; ++x) {
+                                               l_dst[x] = l_src[xorg];
+                                       }
+                                       l_dst += l_new_cmp->w;
+                                               
+                                       for (dy = 1U; dy < l_org_cmp->dy; ++dy) {
+                                               memcpy(l_dst, l_dst - l_new_cmp->w, l_new_cmp->w * sizeof(OPJ_INT32));
+                                               l_dst += l_new_cmp->w;
+                                       }
+                                       l_src += l_org_cmp->w;
+                               }
+                       }
+                       if (y < l_new_cmp->h) {
+                               OPJ_UINT32 x;
+                               OPJ_UINT32 xorg;
+                               
+                               xorg = 0U;
+                               for (x = 0U; x < xoff; ++x) {
+                                       l_dst[x] = 0;
+                               }
+                               if (l_new_cmp->w > (l_org_cmp->dx - 1U)) { /* check substraction overflow for really small images */
+                                       for (; x < l_new_cmp->w - (l_org_cmp->dx - 1U); x += l_org_cmp->dx, ++xorg) {
+                                               OPJ_UINT32 dx;
+                                               for (dx = 0U; dx < l_org_cmp->dx; ++dx) {
+                                                       l_dst[x + dx] = l_src[xorg];
+                                               }
+                                       }
+                               }
+                               for (; x < l_new_cmp->w; ++x) {
+                                       l_dst[x] = l_src[xorg];
+                               }
+                               l_dst += l_new_cmp->w;
+                               ++y;
+                               for (; y < l_new_cmp->h; ++y) {
+                                       memcpy(l_dst, l_dst - l_new_cmp->w, l_new_cmp->w * sizeof(OPJ_INT32));
+                                       l_dst += l_new_cmp->w;
+                               }
+                       }
+               }
+               else {
+                       memcpy(l_new_cmp->data, l_org_cmp->data, l_org_cmp->w * l_org_cmp->h * sizeof(OPJ_INT32));
+               }
+       }
+       opj_image_destroy(original);
+       return l_new_image;
+}
+
 /* -------------------------------------------------------------------------- */
 /**
  * OPJ_DECOMPRESS MAIN
@@ -958,24 +1185,21 @@ int main(int argc, char **argv)
        opj_codec_t* l_codec = NULL;                            /* Handle to a decompressor */
        opj_codestream_index_t* cstr_index = NULL;
 
-       char indexfilename[OPJ_PATH_LEN];       /* index file name */
-
        OPJ_INT32 num_images, imageno;
        img_fol_t img_fol;
        dircnt_t *dirptr = NULL;
   int failed = 0;
+  OPJ_FLOAT64 t, tCumulative = 0;
+  OPJ_UINT32 numDecompressedImages = 0;
 
        /* set decoding parameters to default values */
        set_default_parameters(&parameters);
 
-       /* FIXME Initialize indexfilename and img_fol */
-       *indexfilename = 0;
-
        /* Initialize img_fol */
        memset(&img_fol,0,sizeof(img_fol_t));
 
        /* parse input and get user encoding parameters */
-       if(parse_cmdline_decoder(argc, argv, &parameters,&img_fol, indexfilename) == 1) {
+       if(parse_cmdline_decoder(argc, argv, &parameters,&img_fol) == 1) {
                destroy_parameters(&parameters);
                return EXIT_FAILURE;
        }
@@ -1068,9 +1292,11 @@ int main(int argc, char **argv)
                opj_set_warning_handler(l_codec, warning_callback,00);
                opj_set_error_handler(l_codec, error_callback,00);
 
+               t = opj_clock();
+
                /* Setup the decoder decoding parameters using user parameters */
                if ( !opj_setup_decoder(l_codec, &(parameters.core)) ){
-                       fprintf(stderr, "ERROR -> opj_compress: failed to setup the decoder\n");
+                       fprintf(stderr, "ERROR -> opj_decompress: failed to setup the decoder\n");
                        destroy_parameters(&parameters);
                        opj_stream_destroy(l_stream);
                        opj_destroy_codec(l_codec);
@@ -1132,13 +1358,12 @@ int main(int argc, char **argv)
                        fprintf(stdout, "tile %d is decoded!\n\n", parameters.tile_index);
                }
 
+               tCumulative += opj_clock() - t;
+               numDecompressedImages++;
+
                /* Close the byte stream */
                opj_stream_destroy(l_stream);
 
-               if(image->color_space == OPJ_CLRSPC_SYCC){
-                       color_sycc_to_rgb(image); /* FIXME */
-               }
-               
                if( image->color_space != OPJ_CLRSPC_SYCC 
                        && image->numcomps == 3 && image->comps[0].dx == image->comps[0].dy
                        && image->comps[1].dx != 1 )
@@ -1146,9 +1371,22 @@ int main(int argc, char **argv)
                else if (image->numcomps <= 2)
                        image->color_space = OPJ_CLRSPC_GRAY;
 
+               if(image->color_space == OPJ_CLRSPC_SYCC){
+                       color_sycc_to_rgb(image);
+               }
+               else if((image->color_space == OPJ_CLRSPC_CMYK) && (parameters.cod_format != TIF_DFMT)){
+                       color_cmyk_to_rgb(image);
+               }
+               else if(image->color_space == OPJ_CLRSPC_EYCC){
+                       color_esycc_to_rgb(image);
+               }
+               
                if(image->icc_profile_buf) {
 #if defined(OPJ_HAVE_LIBLCMS1) || defined(OPJ_HAVE_LIBLCMS2)
-                       color_apply_icc_profile(image); /* FIXME */
+                       if(image->icc_profile_len)
+                        color_apply_icc_profile(image);
+                       else
+                        color_cielab_to_rgb(image);
 #endif
                        free(image->icc_profile_buf);
                        image->icc_profile_buf = NULL; image->icc_profile_len = 0;
@@ -1187,6 +1425,19 @@ int main(int argc, char **argv)
                        }
                }
                
+               /* Upsample components */
+               /* ------------------- */
+               if (parameters.upsample)
+               {
+                       image = upsample_image_components(image);
+                       if (image == NULL) {
+                               fprintf(stderr, "ERROR -> opj_decompress: failed to upsample image components!\n");
+                               destroy_parameters(&parameters);
+                               opj_destroy_codec(l_codec);
+                               return EXIT_FAILURE;
+                       }
+               }
+               
                /* Force RGB output */
                /* ---------------- */
                if (parameters.force_rgb)
@@ -1207,7 +1458,6 @@ int main(int argc, char **argv)
                                fprintf(stderr, "ERROR -> opj_decompress: failed to convert to RGB image!\n");
                                destroy_parameters(&parameters);
                                opj_destroy_codec(l_codec);
-                               opj_stream_destroy(l_stream);
                                return EXIT_FAILURE;
                        }
                }
@@ -1216,7 +1466,7 @@ int main(int argc, char **argv)
                /* ------------------- */
                switch (parameters.cod_format) {
                case PXM_DFMT:                  /* PNM PGM PPM */
-                       if (imagetopnm(image, parameters.outfile)) {
+                       if (imagetopnm(image, parameters.outfile, parameters.split_pnm)) {
                 fprintf(stderr,"[ERROR] Outfile %s not generated\n",parameters.outfile);
         failed = 1;
                        }
@@ -1315,9 +1565,12 @@ int main(int argc, char **argv)
                /* destroy the codestream index */
                opj_destroy_cstr_index(&cstr_index);
 
-               if(failed) remove(parameters.outfile);
+               if(failed) (void)remove(parameters.outfile); /* ignore return value */
        }
        destroy_parameters(&parameters);
+       if (numDecompressedImages) {
+               fprintf(stdout, "decode time: %d ms\n", (int)( (tCumulative * 1000.0) / (OPJ_FLOAT64)numDecompressedImages));
+       }
        return failed ? EXIT_FAILURE : EXIT_SUCCESS;
 }
 /*end main*/