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