Merge branch 'master' into issue-254
[openjpeg.git] / src / bin / jp2 / opj_compress.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, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
16  * Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
17  * Copyright (c) 2012, CS Systemes d'Information, France
18  * All rights reserved.
19  *
20  * Redistribution and use in source and binary forms, with or without
21  * modification, are permitted provided that the following conditions
22  * are met:
23  * 1. Redistributions of source code must retain the above copyright
24  *    notice, this list of conditions and the following disclaimer.
25  * 2. Redistributions in binary form must reproduce the above copyright
26  *    notice, this list of conditions and the following disclaimer in the
27  *    documentation and/or other materials provided with the distribution.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
30  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
33  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
37  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39  * POSSIBILITY OF SUCH DAMAGE.
40  */
41
42 #include <stdio.h>
43 #include <string.h>
44 #include <stdlib.h>
45 #include <math.h>
46 #include <assert.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 #endif /* _WIN32 */
61
62 #include "opj_apps_config.h"
63 #include "openjpeg.h"
64 #include "opj_getopt.h"
65 #include "convert.h"
66 #include "index.h"
67
68 #include "format_defs.h"
69
70 typedef struct dircnt{
71     /** Buffer for holding images read from Directory*/
72     char *filename_buf;
73     /** Pointer to the buffer*/
74     char **filename;
75 }dircnt_t;
76
77 typedef struct img_folder{
78     /** The directory path of the folder containing input images*/
79     char *imgdirpath;
80     /** Output format*/
81     char *out_format;
82     /** Enable option*/
83     char set_imgdir;
84     /** Enable Cod Format for output*/
85     char set_out_format;
86 }img_fol_t;
87
88 static void encode_help_display(void) {
89     fprintf(stdout,"\nThis is the opj_compress utility from the OpenJPEG project.\n"
90             "It compresses various image formats with the JPEG 2000 algorithm.\n"
91             "It has been compiled against openjp2 library v%s.\n\n",opj_version());
92
93     fprintf(stdout,"Default encoding options:\n");
94     fprintf(stdout,"-------------------------\n");
95     fprintf(stdout,"\n");
96     fprintf(stdout," * Lossless\n");
97     fprintf(stdout," * 1 tile\n");
98     fprintf(stdout," * RGB->YCC conversion if at least 3 components\n");
99     fprintf(stdout," * Size of precinct : 2^15 x 2^15 (means 1 precinct)\n");
100     fprintf(stdout," * Size of code-block : 64 x 64\n");
101     fprintf(stdout," * Number of resolutions: 6\n");
102     fprintf(stdout," * No SOP marker in the codestream\n");
103     fprintf(stdout," * No EPH marker in the codestream\n");
104     fprintf(stdout," * No sub-sampling in x or y direction\n");
105     fprintf(stdout," * No mode switch activated\n");
106     fprintf(stdout," * Progression order: LRCP\n");
107     #ifdef FIXME_INDEX
108     fprintf(stdout," * No index file\n");
109     #endif /* FIXME_INDEX */
110     fprintf(stdout," * No ROI upshifted\n");
111     fprintf(stdout," * No offset of the origin of the image\n");
112     fprintf(stdout," * No offset of the origin of the tiles\n");
113     fprintf(stdout," * Reversible DWT 5-3\n");
114     /* UniPG>> */
115 #ifdef USE_JPWL
116     fprintf(stdout," * No JPWL protection\n");
117 #endif /* USE_JPWL */
118     /* <<UniPG */
119     fprintf(stdout,"\n");
120
121     fprintf(stdout,"Note:\n");
122     fprintf(stdout,"-----\n");
123     fprintf(stdout,"\n");
124     fprintf(stdout,"The markers written to the main_header are : SOC SIZ COD QCD COM.\n");
125     fprintf(stdout,"COD and QCD never appear in the tile_header.\n");
126     fprintf(stdout,"\n");
127
128     fprintf(stdout,"Parameters:\n");
129     fprintf(stdout,"-----------\n");
130     fprintf(stdout,"\n");
131     fprintf(stdout,"Required Parameters (except with -h):\n");
132     fprintf(stdout,"One of the two options -ImgDir or -i must be used\n");
133     fprintf(stdout,"\n");
134     fprintf(stdout,"-i <file>\n");
135     fprintf(stdout,"    Input file\n");
136     fprintf(stdout,"    Known extensions are <PBM|PGM|PPM|PNM|PAM|PGX|PNG|BMP|TIF|RAW|RAWL|TGA>\n");
137     fprintf(stdout,"    If used, '-o <file>' must be provided\n");
138     fprintf(stdout,"-o <compressed file>\n");
139     fprintf(stdout,"    Output file (accepted extensions are j2k or jp2).\n");
140     fprintf(stdout,"-ImgDir <dir>\n");
141     fprintf(stdout,"    Image file Directory path (example ../Images) \n");
142     fprintf(stdout,"    When using this option -OutFor must be used\n");
143     fprintf(stdout,"-OutFor <J2K|J2C|JP2>\n");
144     fprintf(stdout,"    Output format for compressed files.\n");
145     fprintf(stdout,"    Required only if -ImgDir is used\n");
146     fprintf(stdout,"-F <width>,<height>,<ncomp>,<bitdepth>,{s,u}@<dx1>x<dy1>:...:<dxn>x<dyn>\n");
147     fprintf(stdout,"    Characteristics of the raw input image\n");
148     fprintf(stdout,"    If subsampling is omitted, 1x1 is assumed for all components\n");
149     fprintf(stdout,"      Example: -F 512,512,3,8,u@1x1:2x2:2x2\n");
150     fprintf(stdout,"               for raw 512x512 image with 4:2:0 subsampling\n");
151     fprintf(stdout,"    Required only if RAW or RAWL input file is provided.\n");
152     fprintf(stdout,"\n");
153     fprintf(stdout,"Optional Parameters:\n");
154     fprintf(stdout,"\n");
155     fprintf(stdout,"-h\n");
156     fprintf(stdout,"    Display the help information.\n");
157     fprintf(stdout,"-r <compression ratio>,<compression ratio>,...\n");
158     fprintf(stdout,"    Different compression ratios for successive layers.\n");
159     fprintf(stdout,"    The rate specified for each quality level is the desired\n");
160     fprintf(stdout,"    compression factor.\n");
161     fprintf(stdout,"    Decreasing ratios required.\n");
162     fprintf(stdout,"      Example: -r 20,10,1 means \n");
163     fprintf(stdout,"            quality layer 1: compress 20x, \n");
164     fprintf(stdout,"            quality layer 2: compress 10x \n");
165     fprintf(stdout,"            quality layer 3: compress lossless\n");
166     fprintf(stdout,"    Options -r and -q cannot be used together.\n");
167     fprintf(stdout,"-q <psnr value>,<psnr value>,<psnr value>,...\n");
168     fprintf(stdout,"    Different psnr for successive layers (-q 30,40,50).\n");
169     fprintf(stdout,"    Increasing PSNR values required.\n");
170     fprintf(stdout,"    Options -r and -q cannot be used together.\n");
171     fprintf(stdout,"-n <number of resolutions>\n");
172     fprintf(stdout,"    Number of resolutions.\n");
173     fprintf(stdout,"    It corresponds to the number of DWT decompositions +1. \n");
174     fprintf(stdout,"    Default: 6.\n");
175     fprintf(stdout,"-b <cblk width>,<cblk height>\n");
176     fprintf(stdout,"    Code-block size. The dimension must respect the constraint \n");
177     fprintf(stdout,"    defined in the JPEG-2000 standard (no dimension smaller than 4 \n");
178     fprintf(stdout,"    or greater than 1024, no code-block with more than 4096 coefficients).\n");
179     fprintf(stdout,"    The maximum value authorized is 64x64. \n");
180     fprintf(stdout,"    Default: 64x64.\n");
181     fprintf(stdout,"-c [<prec width>,<prec height>],[<prec width>,<prec height>],...\n");
182     fprintf(stdout,"    Precinct size. Values specified must be power of 2. \n");
183     fprintf(stdout,"    Multiple records may be supplied, in which case the first record refers\n");
184     fprintf(stdout,"    to the highest resolution level and subsequent records to lower \n");
185     fprintf(stdout,"    resolution levels. The last specified record is right-shifted for each \n");
186     fprintf(stdout,"    remaining lower resolution levels.\n");
187     fprintf(stdout,"    Default: 215x215 at each resolution.\n");
188     fprintf(stdout,"-t <tile width>,<tile height>\n");
189     fprintf(stdout,"    Tile size.\n");
190     fprintf(stdout,"    Default: the dimension of the whole image, thus only one tile.\n");
191     fprintf(stdout,"-p <LRCP|RLCP|RPCL|PCRL|CPRL>\n");
192     fprintf(stdout,"    Progression order.\n");
193     fprintf(stdout,"    Default: LRCP.\n");
194     fprintf(stdout,"-s  <subX,subY>\n");
195     fprintf(stdout,"    Subsampling factor.\n");
196     fprintf(stdout,"    Subsampling bigger than 2 can produce error\n");
197     fprintf(stdout,"    Default: no subsampling.\n");
198     fprintf(stdout,"-POC <progression order change>/<progression order change>/...\n");
199     fprintf(stdout,"    Progression order change.\n");
200     fprintf(stdout,"    The syntax of a progression order change is the following:\n");
201     fprintf(stdout,"    T<tile>=<resStart>,<compStart>,<layerEnd>,<resEnd>,<compEnd>,<progOrder>\n");
202     fprintf(stdout,"      Example: -POC T1=0,0,1,5,3,CPRL/T1=5,0,1,6,3,CPRL\n");
203     fprintf(stdout,"-SOP\n");
204     fprintf(stdout,"    Write SOP marker before each packet.\n");
205     fprintf(stdout,"-EPH\n");
206     fprintf(stdout,"    Write EPH marker after each header packet.\n");
207     fprintf(stdout,"-M <key value>\n");
208     fprintf(stdout,"    Mode switch.\n");
209     fprintf(stdout,"    [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL)\n");
210     fprintf(stdout,"    8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)]\n");
211     fprintf(stdout,"    Indicate multiple modes by adding their values.\n");
212     fprintf(stdout,"      Example: RESTART(4) + RESET(2) + SEGMARK(32) => -M 38\n");
213     fprintf(stdout,"-TP <R|L|C>\n");
214     fprintf(stdout,"    Divide packets of every tile into tile-parts.\n");
215     fprintf(stdout,"    Division is made by grouping Resolutions (R), Layers (L)\n");
216     fprintf(stdout,"    or Components (C).\n");
217     #ifdef FIXME_INDEX
218     fprintf(stdout,"-x  <index file>\n");
219     fprintf(stdout,"    Create an index file.\n");
220     #endif /*FIXME_INDEX*/
221     fprintf(stdout,"-ROI c=<component index>,U=<upshifting value>\n");
222     fprintf(stdout,"    Quantization indices upshifted for a component. \n");
223     fprintf(stdout,"    Warning: This option does not implement the usual ROI (Region of Interest).\n");
224     fprintf(stdout,"    It should be understood as a 'Component of Interest'. It offers the \n");
225     fprintf(stdout,"    possibility to upshift the value of a component during quantization step.\n");
226     fprintf(stdout,"    The value after c= is the component number [0, 1, 2, ...] and the value \n");
227     fprintf(stdout,"    after U= is the value of upshifting. U must be in the range [0, 37].\n");
228     fprintf(stdout,"-d <image offset X,image offset Y>\n");
229     fprintf(stdout,"    Offset of the origin of the image.\n");
230     fprintf(stdout,"-T <tile offset X,tile offset Y>\n");
231     fprintf(stdout,"    Offset of the origin of the tiles.\n");
232     fprintf(stdout,"-I\n");
233     fprintf(stdout,"    Use the irreversible DWT 9-7.\n");
234     fprintf(stdout,"-mct <0|1|2>\n");
235     fprintf(stdout,"    Explicitely specifies if a Multiple Component Transform has to be used.\n");
236     fprintf(stdout,"    0: no MCT ; 1: RGB->YCC conversion ; 2: custom MCT.\n");
237     fprintf(stdout,"    If custom MCT, \"-m\" option has to be used (see hereunder).\n");
238     fprintf(stdout,"    By default, RGB->YCC conversion is used if there are 3 components or more,\n");
239     fprintf(stdout,"    no conversion otherwise.\n");
240     fprintf(stdout,"-m <file>\n");
241     fprintf(stdout,"    Use array-based MCT, values are coma separated, line by line\n");
242     fprintf(stdout,"    No specific separators between lines, no space allowed between values.\n");
243     fprintf(stdout,"    If this option is used, it automatically sets \"-mct\" option to 2.\n");
244     fprintf(stdout,"-cinema2K <24|48>\n");
245     fprintf(stdout,"    Digital Cinema 2K profile compliant codestream.\n");
246     fprintf(stdout,"    Need to specify the frames per second for a 2K resolution.\n");
247     fprintf(stdout,"    Only 24 or 48 fps are currently allowed.\n");
248     fprintf(stdout,"-cinema4K\n");
249     fprintf(stdout,"    Digital Cinema 4K profile compliant codestream.\n");
250     fprintf(stdout,"    Frames per second not required. Default value is 24fps.\n");
251     fprintf(stdout,"-jpip\n");
252     fprintf(stdout,"    Write jpip codestream index box in JP2 output file.\n");
253     fprintf(stdout,"    Currently supports only RPCL order.\n");
254     fprintf(stdout,"-C <comment>\n");
255     fprintf(stdout,"    Add <comment> in the comment marker segment.\n");
256     /* UniPG>> */
257 #ifdef USE_JPWL
258     fprintf(stdout,"-W <params>\n");
259     fprintf(stdout,"    Adoption of JPWL (Part 11) capabilities (-W params)\n");
260     fprintf(stdout,"    The <params> field can be written and repeated in any order:\n");
261     fprintf(stdout,"    [h<tilepart><=type>,s<tilepart><=method>,a=<addr>,...\n");
262     fprintf(stdout,"    ...,z=<size>,g=<range>,p<tilepart:pack><=type>]\n");
263     fprintf(stdout,"     h selects the header error protection (EPB): 'type' can be\n");
264     fprintf(stdout,"       [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
265     fprintf(stdout,"       if 'tilepart' is absent, it is for main and tile headers\n");
266     fprintf(stdout,"       if 'tilepart' is present, it applies from that tile\n");
267     fprintf(stdout,"         onwards, up to the next h<> spec, or to the last tilepart\n");
268     fprintf(stdout,"         in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
269     fprintf(stdout,"     p selects the packet error protection (EEP/UEP with EPBs)\n");
270     fprintf(stdout,"      to be applied to raw data: 'type' can be\n");
271     fprintf(stdout,"       [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
272     fprintf(stdout,"       if 'tilepart:pack' is absent, it is from tile 0, packet 0\n");
273     fprintf(stdout,"       if 'tilepart:pack' is present, it applies from that tile\n");
274     fprintf(stdout,"         and that packet onwards, up to the next packet spec\n");
275     fprintf(stdout,"         or to the last packet in the last tilepart in the stream\n");
276     fprintf(stdout,"         (max. %d specs)\n", JPWL_MAX_NO_PACKSPECS);
277     fprintf(stdout,"     s enables sensitivity data insertion (ESD): 'method' can be\n");
278     fprintf(stdout,"       [-1=NO ESD 0=RELATIVE ERROR 1=MSE 2=MSE REDUCTION 3=PSNR\n");
279     fprintf(stdout,"        4=PSNR INCREMENT 5=MAXERR 6=TSE 7=RESERVED]\n");
280     fprintf(stdout,"       if 'tilepart' is absent, it is for main header only\n");
281     fprintf(stdout,"       if 'tilepart' is present, it applies from that tile\n");
282     fprintf(stdout,"         onwards, up to the next s<> spec, or to the last tilepart\n");
283     fprintf(stdout,"         in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
284     fprintf(stdout,"     g determines the addressing mode: <range> can be\n");
285     fprintf(stdout,"       [0=PACKET 1=BYTE RANGE 2=PACKET RANGE]\n");
286     fprintf(stdout,"     a determines the size of data addressing: <addr> can be\n");
287     fprintf(stdout,"       2/4 bytes (small/large codestreams). If not set, auto-mode\n");
288     fprintf(stdout,"     z determines the size of sensitivity values: <size> can be\n");
289     fprintf(stdout,"       1/2 bytes, for the transformed pseudo-floating point value\n");
290     fprintf(stdout,"     ex.:\n");
291     fprintf(stdout,"       h,h0=64,h3=16,h5=32,p0=78,p0:24=56,p1,p3:0=0,p3:20=32,s=0,\n");
292     fprintf(stdout,"         s0=6,s3=-1,a=0,g=1,z=1\n");
293     fprintf(stdout,"     means\n");
294     fprintf(stdout,"       predefined EPB in MH, rs(64,32) from TPH 0 to TPH 2,\n");
295     fprintf(stdout,"       CRC-16 in TPH 3 and TPH 4, CRC-32 in remaining TPHs,\n");
296     fprintf(stdout,"       UEP rs(78,32) for packets 0 to 23 of tile 0,\n");
297     fprintf(stdout,"       UEP rs(56,32) for packs. 24 to the last of tilepart 0,\n");
298     fprintf(stdout,"       UEP rs default for packets of tilepart 1,\n");
299     fprintf(stdout,"       no UEP for packets 0 to 19 of tilepart 3,\n");
300     fprintf(stdout,"       UEP CRC-32 for packs. 20 of tilepart 3 to last tilepart,\n");
301     fprintf(stdout,"       relative sensitivity ESD for MH,\n");
302     fprintf(stdout,"       TSE ESD from TPH 0 to TPH 2, byte range with automatic\n");
303     fprintf(stdout,"       size of addresses and 1 byte for each sensitivity value\n");
304     fprintf(stdout,"     ex.:\n");
305     fprintf(stdout,"           h,s,p\n");
306     fprintf(stdout,"     means\n");
307     fprintf(stdout,"       default protection to headers (MH and TPHs) as well as\n");
308     fprintf(stdout,"       data packets, one ESD in MH\n");
309     fprintf(stdout,"     N.B.: use the following recommendations when specifying\n");
310     fprintf(stdout,"           the JPWL parameters list\n");
311     fprintf(stdout,"       - when you use UEP, always pair the 'p' option with 'h'\n");
312 #endif /* USE_JPWL */
313     /* <<UniPG */
314     fprintf(stdout,"\n");
315 #ifdef FIXME_INDEX
316     fprintf(stdout,"Index structure:\n");
317     fprintf(stdout,"----------------\n");
318     fprintf(stdout,"\n");
319     fprintf(stdout,"Image_height Image_width\n");
320     fprintf(stdout,"progression order\n");
321     fprintf(stdout,"Tiles_size_X Tiles_size_Y\n");
322     fprintf(stdout,"Tiles_nb_X Tiles_nb_Y\n");
323     fprintf(stdout,"Components_nb\n");
324     fprintf(stdout,"Layers_nb\n");
325     fprintf(stdout,"decomposition_levels\n");
326     fprintf(stdout,"[Precincts_size_X_res_Nr Precincts_size_Y_res_Nr]...\n");
327     fprintf(stdout,"   [Precincts_size_X_res_0 Precincts_size_Y_res_0]\n");
328     fprintf(stdout,"Main_header_start_position\n");
329     fprintf(stdout,"Main_header_end_position\n");
330     fprintf(stdout,"Codestream_size\n");
331     fprintf(stdout,"\n");
332     fprintf(stdout,"INFO ON TILES\n");
333     fprintf(stdout,"tileno start_pos end_hd end_tile nbparts disto nbpix disto/nbpix\n");
334     fprintf(stdout,"Tile_0 start_pos end_Theader end_pos NumParts TotalDisto NumPix MaxMSE\n");
335     fprintf(stdout,"Tile_1   ''           ''        ''        ''       ''    ''      ''\n");
336     fprintf(stdout,"...\n");
337     fprintf(stdout,"Tile_Nt   ''           ''        ''        ''       ''    ''     ''\n");
338     fprintf(stdout,"...\n");
339     fprintf(stdout,"TILE 0 DETAILS\n");
340     fprintf(stdout,"part_nb tileno num_packs start_pos end_tph_pos end_pos\n");
341     fprintf(stdout,"...\n");
342     fprintf(stdout,"Progression_string\n");
343     fprintf(stdout,"pack_nb tileno layno resno compno precno start_pos end_ph_pos end_pos disto\n");
344     fprintf(stdout,"Tpacket_0 Tile layer res. comp. prec. start_pos end_pos disto\n");
345     fprintf(stdout,"...\n");
346     fprintf(stdout,"Tpacket_Np ''   ''    ''   ''    ''       ''       ''     ''\n");
347     fprintf(stdout,"MaxDisto\n");
348     fprintf(stdout,"TotalDisto\n\n");
349 #endif /*FIXME_INDEX*/
350 }
351
352 static OPJ_PROG_ORDER give_progression(const char progression[4]) {
353     if(strncmp(progression, "LRCP", 4) == 0) {
354         return OPJ_LRCP;
355     }
356     if(strncmp(progression, "RLCP", 4) == 0) {
357         return OPJ_RLCP;
358     }
359     if(strncmp(progression, "RPCL", 4) == 0) {
360         return OPJ_RPCL;
361     }
362     if(strncmp(progression, "PCRL", 4) == 0) {
363         return OPJ_PCRL;
364     }
365     if(strncmp(progression, "CPRL", 4) == 0) {
366         return OPJ_CPRL;
367     }
368
369     return OPJ_PROG_UNKNOWN;
370 }
371
372 static unsigned int get_num_images(char *imgdirpath){
373     DIR *dir;
374     struct dirent* content;
375     unsigned int num_images = 0;
376
377     /*Reading the input images from given input directory*/
378
379     dir= opendir(imgdirpath);
380     if(!dir){
381         fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
382         return 0;
383     }
384
385     num_images=0;
386     while((content=readdir(dir))!=NULL){
387         if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
388             continue;
389         num_images++;
390     }
391     return num_images;
392 }
393
394 static int load_images(dircnt_t *dirptr, char *imgdirpath){
395     DIR *dir;
396     struct dirent* content;
397     int i = 0;
398
399     /*Reading the input images from given input directory*/
400
401     dir= opendir(imgdirpath);
402     if(!dir){
403         fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
404         return 1;
405     }else       {
406         fprintf(stderr,"Folder opened successfully\n");
407     }
408
409     while((content=readdir(dir))!=NULL){
410         if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
411             continue;
412
413         strcpy(dirptr->filename[i],content->d_name);
414         i++;
415     }
416     return 0;
417 }
418
419 static int get_file_format(char *filename) {
420     unsigned int i;
421     static const char *extension[] = {
422         "pgx", "pnm", "pgm", "ppm", "pbm", "pam", "bmp", "tif", "raw", "rawl", "tga", "png", "j2k", "jp2", "j2c", "jpc"
423     };
424     static const int format[] = {
425         PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, RAWL_DFMT, TGA_DFMT, PNG_DFMT, J2K_CFMT, JP2_CFMT, J2K_CFMT, J2K_CFMT
426     };
427     char * ext = strrchr(filename, '.');
428     if (ext == NULL)
429         return -1;
430     ext++;
431     for(i = 0; i < sizeof(format)/sizeof(*format); i++) {
432         if(strcasecmp(ext, extension[i]) == 0) {
433             return format[i];
434         }
435     }
436     return -1;
437 }
438
439 static char * get_file_name(char *name){
440     char *fname = strtok(name,".");
441     return fname;
442 }
443
444 static char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_cparameters_t *parameters){
445     char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
446     char *temp_p, temp1[OPJ_PATH_LEN]="";
447
448     strcpy(image_filename,dirptr->filename[imageno]);
449     fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
450     parameters->decod_format = get_file_format(image_filename);
451     if (parameters->decod_format == -1)
452         return 1;
453     sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
454     strncpy(parameters->infile, infilename, sizeof(infilename));
455
456     /*Set output file*/
457     strcpy(temp_ofname,get_file_name(image_filename));
458     while((temp_p = strtok(NULL,".")) != NULL){
459         strcat(temp_ofname,temp1);
460         sprintf(temp1,".%s",temp_p);
461     }
462     if(img_fol->set_out_format==1){
463         sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
464         strncpy(parameters->outfile, outfilename, sizeof(outfilename));
465     }
466     return 0;
467 }
468
469 /* ------------------------------------------------------------------------------------ */
470
471 static int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters,
472                                  img_fol_t *img_fol, raw_cparameters_t *raw_cp, char *indexfilename) {
473     OPJ_UINT32 i, j;
474     int totlen, c;
475     opj_option_t long_option[]={
476         {"cinema2K",REQ_ARG, NULL ,'w'},
477         {"cinema4K",NO_ARG, NULL ,'y'},
478         {"ImgDir",REQ_ARG, NULL ,'z'},
479         {"TP",REQ_ARG, NULL ,'u'},
480         {"SOP",NO_ARG, NULL ,'S'},
481         {"EPH",NO_ARG, NULL ,'E'},
482         {"OutFor",REQ_ARG, NULL ,'O'},
483         {"POC",REQ_ARG, NULL ,'P'},
484         {"ROI",REQ_ARG, NULL ,'R'},
485         {"jpip",NO_ARG, NULL, 'J'},
486         {"mct",REQ_ARG, NULL, 'Y'}
487     };
488
489     /* parse the command line */
490     const char optlist[] = "i:o:r:q:n:b:c:t:p:s:SEM:x:R:d:T:If:P:C:F:u:JY:"
491         #ifdef USE_JPWL
492             "W:"
493         #endif /* USE_JPWL */
494             "h";
495
496     totlen=sizeof(long_option);
497     img_fol->set_out_format=0;
498     raw_cp->rawWidth = 0;
499
500     do{
501         c = opj_getopt_long(argc, argv, optlist,long_option,totlen);
502         if (c == -1)
503             break;
504         switch (c) {
505         case 'i':                       /* input file */
506         {
507             char *infile = opj_optarg;
508             parameters->decod_format = get_file_format(infile);
509             switch(parameters->decod_format) {
510             case PGX_DFMT:
511             case PXM_DFMT:
512             case BMP_DFMT:
513             case TIF_DFMT:
514             case RAW_DFMT:
515             case RAWL_DFMT:
516             case TGA_DFMT:
517             case PNG_DFMT:
518                 break;
519             default:
520                 fprintf(stderr,
521                         "[ERROR] Unknown input file format: %s \n"
522                         "        Known file formats are *.pnm, *.pgm, *.ppm, *.pgx, *png, *.bmp, *.tif, *.raw or *.tga\n",
523                         infile);
524                 return 1;
525             }
526             strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
527         }
528             break;
529
530             /* ----------------------------------------------------- */
531
532         case 'o':                       /* output file */
533         {
534             char *outfile = opj_optarg;
535             parameters->cod_format = get_file_format(outfile);
536             switch(parameters->cod_format) {
537             case J2K_CFMT:
538             case JP2_CFMT:
539                 break;
540             default:
541                 fprintf(stderr, "Unknown output format image %s [only *.j2k, *.j2c or *.jp2]!! \n", outfile);
542                 return 1;
543             }
544             strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
545         }
546             break;
547
548             /* ----------------------------------------------------- */
549         case 'O':                       /* output format */
550         {
551             char outformat[50];
552             char *of = opj_optarg;
553             sprintf(outformat,".%s",of);
554             img_fol->set_out_format = 1;
555             parameters->cod_format = get_file_format(outformat);
556             switch(parameters->cod_format) {
557             case J2K_CFMT:
558             case JP2_CFMT:
559                 img_fol->out_format = opj_optarg;
560                 break;
561             default:
562                 fprintf(stderr, "Unknown output format image [only j2k, j2c, jp2]!! \n");
563                 return 1;
564             }
565         }
566             break;
567
568
569             /* ----------------------------------------------------- */
570
571
572         case 'r':                       /* rates rates/distorsion */
573         {
574             char *s = opj_optarg;
575             parameters->tcp_numlayers = 0;
576             while (sscanf(s, "%f", &parameters->tcp_rates[parameters->tcp_numlayers]) == 1) {
577                 parameters->tcp_numlayers++;
578                 while (*s && *s != ',') {
579                     s++;
580                 }
581                 if (!*s)
582                     break;
583                 s++;
584             }
585             parameters->cp_disto_alloc = 1;
586         }
587             break;
588
589             /* ----------------------------------------------------- */
590
591
592         case 'F':                       /* Raw image format parameters */
593         {
594             OPJ_BOOL wrong = OPJ_FALSE;
595             char *substr1;
596             char *substr2;
597             char *sep;
598             char signo;
599             int width,height,bitdepth,ncomp;
600             OPJ_UINT32 len;
601             OPJ_BOOL raw_signed;
602             substr2 = strchr(opj_optarg,'@');
603             if (substr2 == NULL) {
604                 len = (OPJ_UINT32) strlen(opj_optarg);
605             } else {
606                 len = (OPJ_UINT32) (substr2 - opj_optarg);
607                 substr2++; /* skip '@' character */
608             }
609             substr1 = (char*) malloc((len+1)*sizeof(char));
610             memcpy(substr1,opj_optarg,len);
611             substr1[len] = '\0';
612             if (sscanf(substr1, "%d,%d,%d,%d,%c", &width, &height, &ncomp, &bitdepth, &signo) == 5) {
613                 if (signo == 's') {
614                     raw_signed = OPJ_TRUE;
615                 } else if (signo == 'u') {
616                     raw_signed = OPJ_FALSE;
617                 } else {
618                     wrong = OPJ_TRUE;
619                 }
620             } else {
621                 wrong = OPJ_TRUE;
622             }
623             if (!wrong) {
624                 int i;
625                 int lastdx = 1;
626                 int lastdy = 1;
627                 raw_cp->rawWidth = width;
628                 raw_cp->rawHeight = height;
629                 raw_cp->rawComp = ncomp;
630                 raw_cp->rawBitDepth = bitdepth;
631                 raw_cp->rawSigned  = raw_signed;
632                 raw_cp->rawComps = (raw_comp_cparameters_t*) malloc(((OPJ_UINT32)(ncomp))*sizeof(raw_comp_cparameters_t));
633                 for (i = 0; i < ncomp && !wrong; i++) {
634                     if (substr2 == NULL) {
635                         raw_cp->rawComps[i].dx = lastdx;
636                         raw_cp->rawComps[i].dy = lastdy;
637                     } else {
638                         int dx,dy;
639                         sep = strchr(substr2,':');
640                         if (sep == NULL) {
641                             if (sscanf(substr2, "%dx%d", &dx, &dy) == 2) {
642                                 lastdx = dx;
643                                 lastdy = dy;
644                                 raw_cp->rawComps[i].dx = dx;
645                                 raw_cp->rawComps[i].dy = dy;
646                                 substr2 = NULL;
647                             } else {
648                                 wrong = OPJ_TRUE;
649                             }
650                         } else {
651                             if (sscanf(substr2, "%dx%d:%s", &dx, &dy, substr2) == 3) {
652                                 raw_cp->rawComps[i].dx = dx;
653                                 raw_cp->rawComps[i].dy = dy;
654                             } else {
655                                 wrong = OPJ_TRUE;
656                             }
657                         }
658                     }
659                 }
660             }
661             if (substr1) free(substr1);
662             if (wrong) {
663                 fprintf(stderr,"\nError: invalid raw image parameters\n");
664                 fprintf(stderr,"Please use the Format option -F:\n");
665                 fprintf(stderr,"-F <width>,<height>,<ncomp>,<bitdepth>,{s,u}@<dx1>x<dy1>:...:<dxn>x<dyn>\n");
666                 fprintf(stderr,"If subsampling is omitted, 1x1 is assumed for all components\n");
667                 fprintf(stderr,"Example: -i image.raw -o image.j2k -F 512,512,3,8,u@1x1:2x2:2x2\n");
668                 fprintf(stderr,"         for raw 512x512 image with 4:2:0 subsampling\n");
669                 fprintf(stderr,"Aborting.\n");
670                 return 1;
671             }
672         }
673             break;
674
675             /* ----------------------------------------------------- */
676
677         case 'q':                       /* add fixed_quality */
678         {
679             char *s = opj_optarg;
680             while (sscanf(s, "%f", &parameters->tcp_distoratio[parameters->tcp_numlayers]) == 1) {
681                 parameters->tcp_numlayers++;
682                 while (*s && *s != ',') {
683                     s++;
684                 }
685                 if (!*s)
686                     break;
687                 s++;
688             }
689             parameters->cp_fixed_quality = 1;
690         }
691             break;
692
693             /* dda */
694             /* ----------------------------------------------------- */
695
696         case 'f':                       /* mod fixed_quality (before : -q) */
697         {
698             int *row = NULL, *col = NULL;
699             OPJ_UINT32 numlayers = 0, numresolution = 0, matrix_width = 0;
700
701             char *s = opj_optarg;
702             sscanf(s, "%u", &numlayers);
703             s++;
704             if (numlayers > 9)
705                 s++;
706
707             parameters->tcp_numlayers = (int)numlayers;
708             numresolution = (OPJ_UINT32)parameters->numresolution;
709             matrix_width = numresolution * 3;
710             parameters->cp_matrice = (int *) malloc(numlayers * matrix_width * sizeof(int));
711             s = s + 2;
712
713             for (i = 0; i < numlayers; i++) {
714                 row = &parameters->cp_matrice[i * matrix_width];
715                 col = row;
716                 parameters->tcp_rates[i] = 1;
717                 sscanf(s, "%d,", &col[0]);
718                 s += 2;
719                 if (col[0] > 9)
720                     s++;
721                 col[1] = 0;
722                 col[2] = 0;
723                 for (j = 1; j < numresolution; j++) {
724                     col += 3;
725                     sscanf(s, "%d,%d,%d", &col[0], &col[1], &col[2]);
726                     s += 6;
727                     if (col[0] > 9)
728                         s++;
729                     if (col[1] > 9)
730                         s++;
731                     if (col[2] > 9)
732                         s++;
733                 }
734                 if (i < numlayers - 1)
735                     s++;
736             }
737             parameters->cp_fixed_alloc = 1;
738         }
739             break;
740
741             /* ----------------------------------------------------- */
742
743         case 't':                       /* tiles */
744         {
745             sscanf(opj_optarg, "%d,%d", &parameters->cp_tdx, &parameters->cp_tdy);
746             parameters->tile_size_on = OPJ_TRUE;
747         }
748             break;
749
750             /* ----------------------------------------------------- */
751
752         case 'n':                       /* resolution */
753         {
754             sscanf(opj_optarg, "%d", &parameters->numresolution);
755         }
756             break;
757
758             /* ----------------------------------------------------- */
759         case 'c':                       /* precinct dimension */
760         {
761             char sep;
762             int res_spec = 0;
763
764             char *s = opj_optarg;
765             int ret;
766             do {
767                 sep = 0;
768                 ret = sscanf(s, "[%d,%d]%c", &parameters->prcw_init[res_spec],
769                        &parameters->prch_init[res_spec], &sep);
770                 if( !(ret == 2 && sep == 0) && !(ret == 3 && sep == ',') )
771                   {
772                   fprintf(stderr,"\nError: could not parse precinct dimension: '%s' %x\n", s, sep);
773                   fprintf(stderr,"Example: -i lena.raw -o lena.j2k -c [128,128],[128,128]\n");
774                   return 1;
775                   }
776                 parameters->csty |= 0x01;
777                 res_spec++;
778                 s = strpbrk(s, "]") + 2;
779             }
780             while (sep == ',');
781             parameters->res_spec = res_spec;
782         }
783             break;
784
785             /* ----------------------------------------------------- */
786
787         case 'b':                       /* code-block dimension */
788         {
789             int cblockw_init = 0, cblockh_init = 0;
790             sscanf(opj_optarg, "%d,%d", &cblockw_init, &cblockh_init);
791             if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
792                     || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
793                 fprintf(stderr,
794                         "!! Size of code_block error (option -b) !!\n\nRestriction :\n"
795                         "    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
796                 return 1;
797             }
798             parameters->cblockw_init = cblockw_init;
799             parameters->cblockh_init = cblockh_init;
800         }
801             break;
802
803             /* ----------------------------------------------------- */
804
805         case 'x':                       /* creation of index file */
806         {
807             char *index = opj_optarg;
808             strncpy(indexfilename, index, OPJ_PATH_LEN);
809             /* FIXME ADE INDEX >> */
810             fprintf(stderr,
811                     "[WARNING] Index file generation is currently broken.\n"
812                     "          '-x' option ignored.\n");
813             /* << FIXME ADE INDEX */
814         }
815             break;
816
817             /* ----------------------------------------------------- */
818
819         case 'p':                       /* progression order */
820         {
821             char progression[4];
822
823             strncpy(progression, opj_optarg, 4);
824             parameters->prog_order = give_progression(progression);
825             if (parameters->prog_order == -1) {
826                 fprintf(stderr, "Unrecognized progression order "
827                         "[LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
828                 return 1;
829             }
830         }
831             break;
832
833             /* ----------------------------------------------------- */
834
835         case 's':                       /* subsampling factor */
836         {
837             if (sscanf(opj_optarg, "%d,%d", &parameters->subsampling_dx,
838                        &parameters->subsampling_dy) != 2) {
839                 fprintf(stderr, "'-s' sub-sampling argument error !  [-s dx,dy]\n");
840                 return 1;
841             }
842         }
843             break;
844
845             /* ----------------------------------------------------- */
846
847         case 'd':                       /* coordonnate of the reference grid */
848         {
849             if (sscanf(opj_optarg, "%d,%d", &parameters->image_offset_x0,
850                        &parameters->image_offset_y0) != 2) {
851                 fprintf(stderr, "-d 'coordonnate of the reference grid' argument "
852                         "error !! [-d x0,y0]\n");
853                 return 1;
854             }
855         }
856             break;
857
858             /* ----------------------------------------------------- */
859
860         case 'h':                       /* display an help description */
861             encode_help_display();
862             return 1;
863
864             /* ----------------------------------------------------- */
865
866         case 'P':                       /* POC */
867         {
868             int numpocs = 0;            /* number of progression order change (POC) default 0 */
869             opj_poc_t *POC = NULL;      /* POC : used in case of Progression order change */
870
871             char *s = opj_optarg;
872             POC = parameters->POC;
873
874             while (sscanf(s, "T%u=%u,%u,%u,%u,%u,%4s", &POC[numpocs].tile,
875                           &POC[numpocs].resno0, &POC[numpocs].compno0,
876                           &POC[numpocs].layno1, &POC[numpocs].resno1,
877                           &POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
878                 POC[numpocs].prg1 = give_progression(POC[numpocs].progorder);
879                 numpocs++;
880                 while (*s && *s != '/') {
881                     s++;
882                 }
883                 if (!*s) {
884                     break;
885                 }
886                 s++;
887             }
888             parameters->numpocs = (OPJ_UINT32)numpocs;
889         }
890             break;
891
892             /* ------------------------------------------------------ */
893
894         case 'S':                       /* SOP marker */
895         {
896             parameters->csty |= 0x02;
897         }
898             break;
899
900             /* ------------------------------------------------------ */
901
902         case 'E':                       /* EPH marker */
903         {
904             parameters->csty |= 0x04;
905         }
906             break;
907
908             /* ------------------------------------------------------ */
909
910         case 'M':                       /* Mode switch pas tous au point !! */
911         {
912             int value = 0;
913             if (sscanf(opj_optarg, "%d", &value) == 1) {
914                 for (i = 0; i <= 5; i++) {
915                     int cache = value & (1 << i);
916                     if (cache)
917                         parameters->mode |= (1 << i);
918                 }
919             }
920         }
921             break;
922
923             /* ------------------------------------------------------ */
924
925         case 'R':                       /* ROI */
926         {
927             if (sscanf(opj_optarg, "c=%d,U=%d", &parameters->roi_compno,
928                        &parameters->roi_shift) != 2) {
929                 fprintf(stderr, "ROI error !! [-ROI c='compno',U='shift']\n");
930                 return 1;
931             }
932         }
933             break;
934
935             /* ------------------------------------------------------ */
936
937         case 'T':                       /* Tile offset */
938         {
939             if (sscanf(opj_optarg, "%d,%d", &parameters->cp_tx0, &parameters->cp_ty0) != 2) {
940                 fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
941                 return 1;
942             }
943         }
944             break;
945
946             /* ------------------------------------------------------ */
947
948         case 'C':                       /* add a comment */
949         {
950             parameters->cp_comment = (char*)malloc(strlen(opj_optarg) + 1);
951             if(parameters->cp_comment) {
952                 strcpy(parameters->cp_comment, opj_optarg);
953             }
954         }
955             break;
956
957
958             /* ------------------------------------------------------ */
959
960         case 'I':                       /* reversible or not */
961         {
962             parameters->irreversible = 1;
963         }
964             break;
965
966             /* ------------------------------------------------------ */
967
968         case 'u':                       /* Tile part generation*/
969         {
970             parameters->tp_flag = opj_optarg[0];
971             parameters->tp_on = 1;
972         }
973             break;
974
975             /* ------------------------------------------------------ */
976
977         case 'z':                       /* Image Directory path */
978         {
979             img_fol->imgdirpath = (char*)malloc(strlen(opj_optarg) + 1);
980             strcpy(img_fol->imgdirpath,opj_optarg);
981             img_fol->set_imgdir=1;
982         }
983             break;
984
985             /* ------------------------------------------------------ */
986
987         case 'w':                       /* Digital Cinema 2K profile compliance*/
988         {
989             int fps=0;
990             sscanf(opj_optarg,"%d",&fps);
991             if(fps == 24){
992                 parameters->rsiz = OPJ_PROFILE_CINEMA_2K;
993                 parameters->max_comp_size = OPJ_CINEMA_24_COMP;
994                 parameters->max_cs_size = OPJ_CINEMA_24_CS;
995             }else if(fps == 48 ){
996                 parameters->rsiz = OPJ_PROFILE_CINEMA_2K;
997                 parameters->max_comp_size = OPJ_CINEMA_48_COMP;
998                 parameters->max_cs_size = OPJ_CINEMA_48_CS;
999             }else {
1000                 fprintf(stderr,"Incorrect value!! must be 24 or 48\n");
1001                 return 1;
1002             }
1003             fprintf(stdout,"CINEMA 2K profile activated\n"
1004                     "Other options specified could be overriden\n");
1005
1006         }
1007             break;
1008
1009             /* ------------------------------------------------------ */
1010
1011         case 'y':                       /* Digital Cinema 4K profile compliance*/
1012         {
1013             parameters->rsiz = OPJ_PROFILE_CINEMA_4K;
1014             fprintf(stdout,"CINEMA 4K profile activated\n"
1015                     "Other options specified could be overriden\n");
1016         }
1017             break;
1018
1019             /* ------------------------------------------------------ */
1020
1021         case 'Y':                       /* Shall we do an MCT ? 0:no_mct;1:rgb->ycc;2:custom mct (-m option required)*/
1022         {
1023             int mct_mode=0;
1024             sscanf(opj_optarg,"%d",&mct_mode);
1025             if(mct_mode < 0 || mct_mode > 2){
1026                 fprintf(stderr,"MCT incorrect value!! Current accepted values are 0, 1 or 2.\n");
1027                 return 1;
1028             }
1029             parameters->tcp_mct = (char) mct_mode;
1030         }
1031             break;
1032
1033             /* ------------------------------------------------------ */
1034
1035
1036         case 'm':                       /* mct input file */
1037         {
1038             char *lFilename = opj_optarg;
1039             char *lMatrix;
1040             char *lCurrentPtr ;
1041             float *lCurrentDoublePtr;
1042             float *lSpace;
1043             int *l_int_ptr;
1044             int lNbComp = 0, lTotalComp, lMctComp, i2;
1045             size_t lStrLen, lStrFread;
1046
1047             /* Open file */
1048             FILE * lFile = fopen(lFilename,"r");
1049             if (lFile == NULL) {
1050                 return 1;
1051             }
1052
1053             /* Set size of file and read its content*/
1054             fseek(lFile,0,SEEK_END);
1055             lStrLen = (size_t)ftell(lFile);
1056             fseek(lFile,0,SEEK_SET);
1057             lMatrix = (char *) malloc(lStrLen + 1);
1058             lStrFread = fread(lMatrix, 1, lStrLen, lFile);
1059             fclose(lFile);
1060             if( lStrLen != lStrFread ) return 1;
1061
1062             lMatrix[lStrLen] = 0;
1063             lCurrentPtr = lMatrix;
1064
1065             /* replace ',' by 0 */
1066             while (*lCurrentPtr != 0 ) {
1067                 if (*lCurrentPtr == ' ') {
1068                     *lCurrentPtr = 0;
1069                     ++lNbComp;
1070                 }
1071                 ++lCurrentPtr;
1072             }
1073             ++lNbComp;
1074             lCurrentPtr = lMatrix;
1075
1076             lNbComp = (int) (sqrt(4*lNbComp + 1)/2. - 0.5);
1077             lMctComp = lNbComp * lNbComp;
1078             lTotalComp = lMctComp + lNbComp;
1079             lSpace = (float *) malloc((size_t)lTotalComp * sizeof(float));
1080             lCurrentDoublePtr = lSpace;
1081             for (i2=0;i2<lMctComp;++i2) {
1082                 lStrLen = strlen(lCurrentPtr) + 1;
1083                 *lCurrentDoublePtr++ = (float) atof(lCurrentPtr);
1084                 lCurrentPtr += lStrLen;
1085             }
1086
1087             l_int_ptr = (int*) lCurrentDoublePtr;
1088             for (i2=0;i2<lNbComp;++i2) {
1089                 lStrLen = strlen(lCurrentPtr) + 1;
1090                 *l_int_ptr++ = atoi(lCurrentPtr);
1091                 lCurrentPtr += lStrLen;
1092             }
1093
1094             /* TODO should not be here ! */
1095             opj_set_MCT(parameters, lSpace, (int *)(lSpace + lMctComp), (OPJ_UINT32)lNbComp);
1096
1097             /* Free memory*/
1098             free(lSpace);
1099             free(lMatrix);
1100         }
1101             break;
1102
1103
1104             /* ------------------------------------------------------ */
1105
1106             /* UniPG>> */
1107 #ifdef USE_JPWL
1108             /* ------------------------------------------------------ */
1109
1110         case 'W':                       /* JPWL capabilities switched on */
1111         {
1112             char *token = NULL;
1113             int hprot, pprot, sens, addr, size, range;
1114
1115             /* we need to enable indexing */
1116             if (!indexfilename || !*indexfilename) {
1117                 strncpy(indexfilename, JPWL_PRIVATEINDEX_NAME, OPJ_PATH_LEN);
1118             }
1119
1120             /* search for different protection methods */
1121
1122             /* break the option in comma points and parse the result */
1123             token = strtok(opj_optarg, ",");
1124             while(token != NULL) {
1125
1126                 /* search header error protection method */
1127                 if (*token == 'h') {
1128
1129                     static int tile = 0, tilespec = 0, lasttileno = 0;
1130
1131                     hprot = 1; /* predefined method */
1132
1133                     if(sscanf(token, "h=%d", &hprot) == 1) {
1134                         /* Main header, specified */
1135                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1136                               ((hprot >= 37) && (hprot <= 128)))) {
1137                             fprintf(stderr, "ERROR -> invalid main header protection method h = %d\n", hprot);
1138                             return 1;
1139                         }
1140                         parameters->jpwl_hprot_MH = hprot;
1141
1142                     } else if(sscanf(token, "h%d=%d", &tile, &hprot) == 2) {
1143                         /* Tile part header, specified */
1144                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1145                               ((hprot >= 37) && (hprot <= 128)))) {
1146                             fprintf(stderr, "ERROR -> invalid tile part header protection method h = %d\n", hprot);
1147                             return 1;
1148                         }
1149                         if (tile < 0) {
1150                             fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1151                             return 1;
1152                         }
1153                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1154                             parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1155                             parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1156                         }
1157
1158                     } else if(sscanf(token, "h%d", &tile) == 1) {
1159                         /* Tile part header, unspecified */
1160                         if (tile < 0) {
1161                             fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1162                             return 1;
1163                         }
1164                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1165                             parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1166                             parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1167                         }
1168
1169
1170                     } else if (!strcmp(token, "h")) {
1171                         /* Main header, unspecified */
1172                         parameters->jpwl_hprot_MH = hprot;
1173
1174                     } else {
1175                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1176                         return 1;
1177                     };
1178
1179                 }
1180
1181                 /* search packet error protection method */
1182                 if (*token == 'p') {
1183
1184                     static int pack = 0, tile = 0, packspec = 0;
1185
1186                     pprot = 1; /* predefined method */
1187
1188                     if (sscanf(token, "p=%d", &pprot) == 1) {
1189                         /* Method for all tiles and all packets */
1190                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1191                               ((pprot >= 37) && (pprot <= 128)))) {
1192                             fprintf(stderr, "ERROR -> invalid default packet protection method p = %d\n", pprot);
1193                             return 1;
1194                         }
1195                         parameters->jpwl_pprot_tileno[0] = 0;
1196                         parameters->jpwl_pprot_packno[0] = 0;
1197                         parameters->jpwl_pprot[0] = pprot;
1198
1199                     } else if (sscanf(token, "p%d=%d", &tile, &pprot) == 2) {
1200                         /* method specified from that tile on */
1201                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1202                               ((pprot >= 37) && (pprot <= 128)))) {
1203                             fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1204                             return 1;
1205                         }
1206                         if (tile < 0) {
1207                             fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1208                             return 1;
1209                         }
1210                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1211                             parameters->jpwl_pprot_tileno[packspec] = tile;
1212                             parameters->jpwl_pprot_packno[packspec] = 0;
1213                             parameters->jpwl_pprot[packspec++] = pprot;
1214                         }
1215
1216                     } else if (sscanf(token, "p%d:%d=%d", &tile, &pack, &pprot) == 3) {
1217                         /* method fully specified from that tile and that packet on */
1218                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1219                               ((pprot >= 37) && (pprot <= 128)))) {
1220                             fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1221                             return 1;
1222                         }
1223                         if (tile < 0) {
1224                             fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1225                             return 1;
1226                         }
1227                         if (pack < 0) {
1228                             fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1229                             return 1;
1230                         }
1231                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1232                             parameters->jpwl_pprot_tileno[packspec] = tile;
1233                             parameters->jpwl_pprot_packno[packspec] = pack;
1234                             parameters->jpwl_pprot[packspec++] = pprot;
1235                         }
1236
1237                     } else if (sscanf(token, "p%d:%d", &tile, &pack) == 2) {
1238                         /* default method from that tile and that packet on */
1239                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1240                               ((pprot >= 37) && (pprot <= 128)))) {
1241                             fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1242                             return 1;
1243                         }
1244                         if (tile < 0) {
1245                             fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1246                             return 1;
1247                         }
1248                         if (pack < 0) {
1249                             fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1250                             return 1;
1251                         }
1252                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1253                             parameters->jpwl_pprot_tileno[packspec] = tile;
1254                             parameters->jpwl_pprot_packno[packspec] = pack;
1255                             parameters->jpwl_pprot[packspec++] = pprot;
1256                         }
1257
1258                     } else if (sscanf(token, "p%d", &tile) == 1) {
1259                         /* default from a tile on */
1260                         if (tile < 0) {
1261                             fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1262                             return 1;
1263                         }
1264                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1265                             parameters->jpwl_pprot_tileno[packspec] = tile;
1266                             parameters->jpwl_pprot_packno[packspec] = 0;
1267                             parameters->jpwl_pprot[packspec++] = pprot;
1268                         }
1269
1270
1271                     } else if (!strcmp(token, "p")) {
1272                         /* all default */
1273                         parameters->jpwl_pprot_tileno[0] = 0;
1274                         parameters->jpwl_pprot_packno[0] = 0;
1275                         parameters->jpwl_pprot[0] = pprot;
1276
1277                     } else {
1278                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1279                         return 1;
1280                     };
1281
1282                 }
1283
1284                 /* search sensitivity method */
1285                 if (*token == 's') {
1286
1287                     static int tile = 0, tilespec = 0, lasttileno = 0;
1288
1289                     sens = 0; /* predefined: relative error */
1290
1291                     if(sscanf(token, "s=%d", &sens) == 1) {
1292                         /* Main header, specified */
1293                         if ((sens < -1) || (sens > 7)) {
1294                             fprintf(stderr, "ERROR -> invalid main header sensitivity method s = %d\n", sens);
1295                             return 1;
1296                         }
1297                         parameters->jpwl_sens_MH = sens;
1298
1299                     } else if(sscanf(token, "s%d=%d", &tile, &sens) == 2) {
1300                         /* Tile part header, specified */
1301                         if ((sens < -1) || (sens > 7)) {
1302                             fprintf(stderr, "ERROR -> invalid tile part header sensitivity method s = %d\n", sens);
1303                             return 1;
1304                         }
1305                         if (tile < 0) {
1306                             fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1307                             return 1;
1308                         }
1309                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1310                             parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1311                             parameters->jpwl_sens_TPH[tilespec++] = sens;
1312                         }
1313
1314                     } else if(sscanf(token, "s%d", &tile) == 1) {
1315                         /* Tile part header, unspecified */
1316                         if (tile < 0) {
1317                             fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1318                             return 1;
1319                         }
1320                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1321                             parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1322                             parameters->jpwl_sens_TPH[tilespec++] = hprot;
1323                         }
1324
1325                     } else if (!strcmp(token, "s")) {
1326                         /* Main header, unspecified */
1327                         parameters->jpwl_sens_MH = sens;
1328
1329                     } else {
1330                         fprintf(stderr, "ERROR -> invalid sensitivity method selection = %s\n", token);
1331                         return 1;
1332                     };
1333
1334                     parameters->jpwl_sens_size = 2; /* 2 bytes for default size */
1335                 }
1336
1337                 /* search addressing size */
1338                 if (*token == 'a') {
1339
1340
1341                     addr = 0; /* predefined: auto */
1342
1343                     if(sscanf(token, "a=%d", &addr) == 1) {
1344                         /* Specified */
1345                         if ((addr != 0) && (addr != 2) && (addr != 4)) {
1346                             fprintf(stderr, "ERROR -> invalid addressing size a = %d\n", addr);
1347                             return 1;
1348                         }
1349                         parameters->jpwl_sens_addr = addr;
1350
1351                     } else if (!strcmp(token, "a")) {
1352                         /* default */
1353                         parameters->jpwl_sens_addr = addr; /* auto for default size */
1354
1355                     } else {
1356                         fprintf(stderr, "ERROR -> invalid addressing selection = %s\n", token);
1357                         return 1;
1358                     };
1359
1360                 }
1361
1362                 /* search sensitivity size */
1363                 if (*token == 'z') {
1364
1365
1366                     size = 1; /* predefined: 1 byte */
1367
1368                     if(sscanf(token, "z=%d", &size) == 1) {
1369                         /* Specified */
1370                         if ((size != 0) && (size != 1) && (size != 2)) {
1371                             fprintf(stderr, "ERROR -> invalid sensitivity size z = %d\n", size);
1372                             return 1;
1373                         }
1374                         parameters->jpwl_sens_size = size;
1375
1376                     } else if (!strcmp(token, "a")) {
1377                         /* default */
1378                         parameters->jpwl_sens_size = size; /* 1 for default size */
1379
1380                     } else {
1381                         fprintf(stderr, "ERROR -> invalid size selection = %s\n", token);
1382                         return 1;
1383                     };
1384
1385                 }
1386
1387                 /* search range method */
1388                 if (*token == 'g') {
1389
1390
1391                     range = 0; /* predefined: 0 (packet) */
1392
1393                     if(sscanf(token, "g=%d", &range) == 1) {
1394                         /* Specified */
1395                         if ((range < 0) || (range > 3)) {
1396                             fprintf(stderr, "ERROR -> invalid sensitivity range method g = %d\n", range);
1397                             return 1;
1398                         }
1399                         parameters->jpwl_sens_range = range;
1400
1401                     } else if (!strcmp(token, "g")) {
1402                         /* default */
1403                         parameters->jpwl_sens_range = range;
1404
1405                     } else {
1406                         fprintf(stderr, "ERROR -> invalid range selection = %s\n", token);
1407                         return 1;
1408                     };
1409
1410                 }
1411
1412                 /* next token or bust */
1413                 token = strtok(NULL, ",");
1414             };
1415
1416
1417             /* some info */
1418             fprintf(stdout, "Info: JPWL capabilities enabled\n");
1419             parameters->jpwl_epc_on = OPJ_TRUE;
1420
1421         }
1422             break;
1423 #endif /* USE_JPWL */
1424             /* <<UniPG */
1425             /* ------------------------------------------------------ */
1426
1427         case 'J':                       /* jpip on */
1428         {
1429             parameters->jpip_on = OPJ_TRUE;
1430         }
1431             break;
1432             /* ------------------------------------------------------ */
1433
1434
1435         default:
1436             fprintf(stderr, "[WARNING] An invalid option has been ignored\n");
1437             break;
1438         }
1439     }while(c != -1);
1440
1441     if(img_fol->set_imgdir == 1){
1442         if(!(parameters->infile[0] == 0)){
1443             fprintf(stderr, "[ERROR] options -ImgDir and -i cannot be used together !!\n");
1444             return 1;
1445         }
1446         if(img_fol->set_out_format == 0){
1447             fprintf(stderr, "[ERROR] When -ImgDir is used, -OutFor <FORMAT> must be used !!\n");
1448             fprintf(stderr, "Only one format allowed! Valid formats are j2k and jp2!!\n");
1449             return 1;
1450         }
1451         if(!((parameters->outfile[0] == 0))){
1452             fprintf(stderr, "[ERROR] options -ImgDir and -o cannot be used together !!\n");
1453             fprintf(stderr, "Specify OutputFormat using -OutFor<FORMAT> !!\n");
1454             return 1;
1455         }
1456     }else{
1457         if((parameters->infile[0] == 0) || (parameters->outfile[0] == 0)) {
1458             fprintf(stderr, "[ERROR] Required parameters are missing\n"
1459                             "Example: %s -i image.pgm -o image.j2k\n",argv[0]);
1460             fprintf(stderr, "   Help: %s -h\n",argv[0]);
1461             return 1;
1462         }
1463     }
1464
1465     if ( (parameters->decod_format == RAW_DFMT && raw_cp->rawWidth == 0)
1466          || (parameters->decod_format == RAWL_DFMT && raw_cp->rawWidth == 0)) {
1467         fprintf(stderr,"[ERROR] invalid raw image parameters\n");
1468         fprintf(stderr,"Please use the Format option -F:\n");
1469         fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
1470         fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
1471         fprintf(stderr,"Aborting\n");
1472         return 1;
1473     }
1474
1475     if ((parameters->cp_disto_alloc || parameters->cp_fixed_alloc || parameters->cp_fixed_quality)
1476             && (!(parameters->cp_disto_alloc ^ parameters->cp_fixed_alloc ^ parameters->cp_fixed_quality))) {
1477         fprintf(stderr, "[ERROR] options -r -q and -f cannot be used together !!\n");
1478         return 1;
1479     }                           /* mod fixed_quality */
1480
1481     /* if no rate entered, lossless by default */
1482     if (parameters->tcp_numlayers == 0) {
1483         parameters->tcp_rates[0] = 0;   /* MOD antonin : losslessbug */
1484         parameters->tcp_numlayers++;
1485         parameters->cp_disto_alloc = 1;
1486     }
1487
1488     if((parameters->cp_tx0 > parameters->image_offset_x0) || (parameters->cp_ty0 > parameters->image_offset_y0)) {
1489         fprintf(stderr,
1490                 "[ERROR] Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
1491                 parameters->cp_tx0, parameters->image_offset_x0, parameters->cp_ty0, parameters->image_offset_y0);
1492         return 1;
1493     }
1494
1495     for (i = 0; i < parameters->numpocs; i++) {
1496         if (parameters->POC[i].prg == -1) {
1497             fprintf(stderr,
1498                     "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
1499                     i + 1);
1500         }
1501     }
1502
1503     /* If subsampled image is provided, automatically disable MCT */
1504     if ( ((parameters->decod_format == RAW_DFMT) || (parameters->decod_format == RAWL_DFMT))
1505          && (   ((raw_cp->rawComp > 1 ) && ((raw_cp->rawComps[1].dx > 1) || (raw_cp->rawComps[1].dy > 1)))
1506              || ((raw_cp->rawComp > 2 ) && ((raw_cp->rawComps[2].dx > 1) || (raw_cp->rawComps[2].dy > 1)))
1507                                                 )) {
1508         parameters->tcp_mct = 0;
1509     }
1510
1511     return 0;
1512 }
1513
1514 /* -------------------------------------------------------------------------- */
1515
1516 /**
1517 sample error debug callback expecting no client object
1518 */
1519 static void error_callback(const char *msg, void *client_data) {
1520     (void)client_data;
1521     fprintf(stdout, "[ERROR] %s", msg);
1522 }
1523 /**
1524 sample warning debug callback expecting no client object
1525 */
1526 static void warning_callback(const char *msg, void *client_data) {
1527     (void)client_data;
1528     fprintf(stdout, "[WARNING] %s", msg);
1529 }
1530 /**
1531 sample debug callback expecting no client object
1532 */
1533 static void info_callback(const char *msg, void *client_data) {
1534     (void)client_data;
1535     fprintf(stdout, "[INFO] %s", msg);
1536 }
1537
1538 /* -------------------------------------------------------------------------- */
1539 /**
1540  * OPJ_COMPRESS MAIN
1541  */
1542 /* -------------------------------------------------------------------------- */
1543 int main(int argc, char **argv) {
1544
1545     opj_cparameters_t parameters;       /* compression parameters */
1546
1547     opj_stream_t *l_stream = 00;
1548     opj_codec_t* l_codec = 00;
1549     opj_image_t *image = NULL;
1550     raw_cparameters_t raw_cp;
1551
1552     char indexfilename[OPJ_PATH_LEN];   /* index file name */
1553
1554     unsigned int i, num_images, imageno;
1555     img_fol_t img_fol;
1556     dircnt_t *dirptr = NULL;
1557
1558     OPJ_BOOL bSuccess;
1559     OPJ_BOOL bUseTiles = OPJ_FALSE; /* OPJ_TRUE */
1560     OPJ_UINT32 l_nb_tiles = 4;
1561
1562     /* set encoding parameters to default values */
1563     opj_set_default_encoder_parameters(&parameters);
1564
1565     /* Initialize indexfilename and img_fol */
1566     *indexfilename = 0;
1567     memset(&img_fol,0,sizeof(img_fol_t));
1568
1569     /* raw_cp initialization */
1570     raw_cp.rawBitDepth = 0;
1571     raw_cp.rawComp = 0;
1572     raw_cp.rawComps = 0;
1573     raw_cp.rawHeight = 0;
1574     raw_cp.rawSigned = 0;
1575     raw_cp.rawWidth = 0;
1576
1577     /* parse input and get user encoding parameters */
1578     parameters.tcp_mct = (char) 255; /* This will be set later according to the input image or the provided option */
1579     if(parse_cmdline_encoder(argc, argv, &parameters,&img_fol, &raw_cp, indexfilename) == 1) {
1580         return 1;
1581     }
1582
1583     /* Read directory if necessary */
1584     if(img_fol.set_imgdir==1){
1585         num_images=get_num_images(img_fol.imgdirpath);
1586         dirptr=(dircnt_t*)malloc(sizeof(dircnt_t));
1587         if(dirptr){
1588             dirptr->filename_buf = (char*)malloc(num_images*OPJ_PATH_LEN*sizeof(char)); /* Stores at max 10 image file names*/
1589             dirptr->filename = (char**) malloc(num_images*sizeof(char*));
1590             if(!dirptr->filename_buf){
1591                 return 0;
1592             }
1593             for(i=0;i<num_images;i++){
1594                 dirptr->filename[i] = dirptr->filename_buf + i*OPJ_PATH_LEN;
1595             }
1596         }
1597         if(load_images(dirptr,img_fol.imgdirpath)==1){
1598             return 0;
1599         }
1600         if (num_images==0){
1601             fprintf(stdout,"Folder is empty\n");
1602             return 0;
1603         }
1604     }else{
1605         num_images=1;
1606     }
1607     /*Encoding image one by one*/
1608     for(imageno=0;imageno<num_images;imageno++) {
1609         image = NULL;
1610         fprintf(stderr,"\n");
1611
1612         if(img_fol.set_imgdir==1){
1613             if (get_next_file((int)imageno, dirptr,&img_fol, &parameters)) {
1614                 fprintf(stderr,"skipping file...\n");
1615                 continue;
1616             }
1617         }
1618
1619         switch(parameters.decod_format) {
1620         case PGX_DFMT:
1621             break;
1622         case PXM_DFMT:
1623             break;
1624         case BMP_DFMT:
1625             break;
1626         case TIF_DFMT:
1627             break;
1628         case RAW_DFMT:
1629         case RAWL_DFMT:
1630             break;
1631         case TGA_DFMT:
1632             break;
1633         case PNG_DFMT:
1634             break;
1635         default:
1636             fprintf(stderr,"skipping file...\n");
1637             continue;
1638         }
1639
1640         /* decode the source image */
1641         /* ----------------------- */
1642
1643         switch (parameters.decod_format) {
1644         case PGX_DFMT:
1645             image = pgxtoimage(parameters.infile, &parameters);
1646             if (!image) {
1647                 fprintf(stderr, "Unable to load pgx file\n");
1648                 return 1;
1649             }
1650             break;
1651
1652         case PXM_DFMT:
1653             image = pnmtoimage(parameters.infile, &parameters);
1654             if (!image) {
1655                 fprintf(stderr, "Unable to load pnm file\n");
1656                 return 1;
1657             }
1658             break;
1659
1660         case BMP_DFMT:
1661             image = bmptoimage(parameters.infile, &parameters);
1662             if (!image) {
1663                 fprintf(stderr, "Unable to load bmp file\n");
1664                 return 1;
1665             }
1666             break;
1667
1668 #ifdef OPJ_HAVE_LIBTIFF
1669         case TIF_DFMT:
1670             image = tiftoimage(parameters.infile, &parameters);
1671             if (!image) {
1672                 fprintf(stderr, "Unable to load tiff file\n");
1673                 return 1;
1674             }
1675             break;
1676 #endif /* OPJ_HAVE_LIBTIFF */
1677
1678         case RAW_DFMT:
1679             image = rawtoimage(parameters.infile, &parameters, &raw_cp);
1680             if (!image) {
1681                 fprintf(stderr, "Unable to load raw file\n");
1682                 return 1;
1683             }
1684             break;
1685
1686         case RAWL_DFMT:
1687             image = rawltoimage(parameters.infile, &parameters, &raw_cp);
1688             if (!image) {
1689                 fprintf(stderr, "Unable to load raw file\n");
1690                 return 1;
1691             }
1692             break;
1693
1694         case TGA_DFMT:
1695             image = tgatoimage(parameters.infile, &parameters);
1696             if (!image) {
1697                 fprintf(stderr, "Unable to load tga file\n");
1698                 return 1;
1699             }
1700             break;
1701
1702 #ifdef OPJ_HAVE_LIBPNG
1703         case PNG_DFMT:
1704             image = pngtoimage(parameters.infile, &parameters);
1705             if (!image) {
1706                 fprintf(stderr, "Unable to load png file\n");
1707                 return 1;
1708             }
1709             break;
1710 #endif /* OPJ_HAVE_LIBPNG */
1711         }
1712
1713         /* Can happen if input file is TIFF or PNG
1714  * and OPJ_HAVE_LIBTIF or OPJ_HAVE_LIBPNG is undefined
1715 */
1716         if( !image) {
1717             fprintf(stderr, "Unable to load file: got no image\n");
1718             return 1;
1719         }
1720
1721         /* Decide if MCT should be used */
1722         if (parameters.tcp_mct == (char) 255) { /* mct mode has not been set in commandline */
1723             parameters.tcp_mct = (image->numcomps >= 3) ? 1 : 0;
1724         } else {            /* mct mode has been set in commandline */
1725             if ((parameters.tcp_mct == 1) && (image->numcomps < 3)){
1726                 fprintf(stderr, "RGB->YCC conversion cannot be used:\n");
1727                 fprintf(stderr, "Input image has less than 3 components\n");
1728                 return 1;
1729             }
1730             if ((parameters.tcp_mct == 2) && (!parameters.mct_data)){
1731                 fprintf(stderr, "Custom MCT has been set but no array-based MCT\n");
1732                 fprintf(stderr, "has been provided. Aborting.\n");
1733                 return 1;
1734             }
1735         }
1736
1737         /* encode the destination image */
1738         /* ---------------------------- */
1739
1740         switch(parameters.cod_format) {
1741         case J2K_CFMT:  /* JPEG-2000 codestream */
1742         {
1743             /* Get a decoder handle */
1744             l_codec = opj_create_compress(OPJ_CODEC_J2K);
1745             break;
1746         }
1747         case JP2_CFMT:  /* JPEG 2000 compressed image data */
1748         {
1749             /* Get a decoder handle */
1750             l_codec = opj_create_compress(OPJ_CODEC_JP2);
1751             break;
1752         }
1753         default:
1754             fprintf(stderr, "skipping file..\n");
1755             opj_stream_destroy(l_stream);
1756             continue;
1757         }
1758
1759         /* catch events using our callbacks and give a local context */
1760         opj_set_info_handler(l_codec, info_callback,00);
1761         opj_set_warning_handler(l_codec, warning_callback,00);
1762         opj_set_error_handler(l_codec, error_callback,00);
1763
1764         if( bUseTiles ) {
1765             parameters.cp_tx0 = 0;
1766             parameters.cp_ty0 = 0;
1767             parameters.tile_size_on = OPJ_TRUE;
1768             parameters.cp_tdx = 512;
1769             parameters.cp_tdy = 512;
1770         }
1771         if (! opj_setup_encoder(l_codec, &parameters, image)) {
1772             fprintf(stderr, "failed to encode image: opj_setup_encoder\n");
1773             opj_destroy_codec(l_codec);
1774             opj_image_destroy(image);
1775             return 1;
1776         }
1777
1778         /* open a byte stream for writing and allocate memory for all tiles */
1779         l_stream = opj_stream_create_default_file_stream(parameters.outfile,OPJ_FALSE);
1780         if (! l_stream){
1781             return 1;
1782         }
1783
1784         /* encode the image */
1785         bSuccess = opj_start_compress(l_codec,image,l_stream);
1786         if (!bSuccess)  {
1787             fprintf(stderr, "failed to encode image: opj_start_compress\n");
1788         }
1789         if( bSuccess && bUseTiles ) {
1790             OPJ_BYTE *l_data;
1791             OPJ_UINT32 l_data_size = 512*512*3;
1792             l_data = (OPJ_BYTE*) calloc( 1,l_data_size);
1793             assert( l_data );
1794             for (i=0;i<l_nb_tiles;++i) {
1795                 if (! opj_write_tile(l_codec,i,l_data,l_data_size,l_stream)) {
1796                     fprintf(stderr, "ERROR -> test_tile_encoder: failed to write the tile %d!\n",i);
1797                     opj_stream_destroy(l_stream);
1798                     opj_destroy_codec(l_codec);
1799                     opj_image_destroy(image);
1800                     return 1;
1801                 }
1802             }
1803             free(l_data);
1804         }
1805         else {
1806             bSuccess = bSuccess && opj_encode(l_codec, l_stream);
1807             if (!bSuccess)  {
1808                 fprintf(stderr, "failed to encode image: opj_encode\n");
1809             }
1810         }
1811         bSuccess = bSuccess && opj_end_compress(l_codec, l_stream);
1812         if (!bSuccess)  {
1813             fprintf(stderr, "failed to encode image: opj_end_compress\n");
1814         }
1815
1816         if (!bSuccess)  {
1817             opj_stream_destroy(l_stream);
1818             opj_destroy_codec(l_codec);
1819             opj_image_destroy(image);
1820             fprintf(stderr, "failed to encode image\n");
1821                         remove(parameters.outfile);
1822             return 1;
1823         }
1824
1825         fprintf(stdout,"[INFO] Generated outfile %s\n",parameters.outfile);
1826         /* close and free the byte stream */
1827         opj_stream_destroy(l_stream);
1828
1829         /* free remaining compression structures */
1830         opj_destroy_codec(l_codec);
1831
1832         /* free image data */
1833         opj_image_destroy(image);
1834
1835     }
1836
1837     /* free user parameters structure */
1838     if(parameters.cp_comment)   free(parameters.cp_comment);
1839     if(parameters.cp_matrice)   free(parameters.cp_matrice);
1840     if(raw_cp.rawComps) free(raw_cp.rawComps);
1841
1842     return 0;
1843 }