Remove some simple warnings about comments
[openjpeg.git] / applications / codec / j2k_dump.c
1 /*
2  * Copyright (c) 20010, Mathieu Malaterre, GDCM
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
18  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24  * POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <math.h>
31
32 #ifdef _WIN32
33 #include "windirent.h"
34 #else
35 #include <dirent.h>
36 #endif /* _WIN32 */
37
38 #ifdef _WIN32
39 #include <windows.h>
40 #else
41 #include <strings.h>
42 #define _stricmp strcasecmp
43 #define _strnicmp strncasecmp
44 #endif /* _WIN32 */
45
46 #include "opj_config.h"
47 #include "openjpeg.h"
48 #include "j2k.h"
49 #include "jp2.h"
50 #include "opj_getopt.h"
51 #include "convert.h"
52 #include "index.h"
53
54 #include "format_defs.h"
55
56 typedef struct dircnt{
57         /** Buffer for holding images read from Directory*/
58         char *filename_buf;
59         /** Pointer to the buffer*/
60         char **filename;
61 }dircnt_t;
62
63
64 typedef struct img_folder{
65         /** The directory path of the folder containing input images*/
66         char *imgdirpath;
67         /** Output format*/
68         const char *out_format;
69         /** Enable option*/
70         char set_imgdir;
71         /** Enable Cod Format for output*/
72         char set_out_format;
73
74 }img_fol_t;
75
76 void decode_help_display(void) {
77         fprintf(stdout,"HELP for j2k_dump\n----\n\n");
78         fprintf(stdout,"- the -h option displays this help information on screen\n\n");
79
80 /* UniPG>> */
81         fprintf(stdout,"List of parameters for the JPEG 2000 "
82 #ifdef USE_JPWL
83                 "+ JPWL "
84 #endif /* USE_JPWL */
85                 "decoder:\n");
86 /* <<UniPG */
87         fprintf(stdout,"\n");
88         fprintf(stdout,"\n");
89         fprintf(stdout,"  -ImgDir \n");
90         fprintf(stdout,"        Image file Directory path \n");
91         fprintf(stdout,"  -i <compressed file>\n");
92         fprintf(stdout,"    REQUIRED only if an Input image directory not specified\n");
93         fprintf(stdout,"    Currently accepts J2K-files, JP2-files and JPT-files. The file type\n");
94         fprintf(stdout,"    is identified based on its suffix.\n");
95         fprintf(stdout,"  -o <output file>\n");
96   fprintf(stdout,"    OPTIONAL\n");
97   fprintf(stdout,"    Output file where file info will be dump.\n");
98   fprintf(stdout,"    By default it will be in the stdout.\n");
99         fprintf(stdout,"\n");
100 }
101
102 /* -------------------------------------------------------------------------- */
103 static void j2k_dump_image(FILE *fd, opj_image_t * img);
104 static void j2k_dump_cp(FILE *fd, opj_image_t * img, opj_cp_t * cp);
105
106 int get_num_images(char *imgdirpath){
107         DIR *dir;
108         struct dirent* content; 
109         int num_images = 0;
110
111         /*Reading the input images from given input directory*/
112
113         dir= opendir(imgdirpath);
114         if(!dir){
115                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
116                 return 0;
117         }
118         
119         while((content=readdir(dir))!=NULL){
120                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
121                         continue;
122                 num_images++;
123         }
124         return num_images;
125 }
126
127 int load_images(dircnt_t *dirptr, char *imgdirpath){
128         DIR *dir;
129         struct dirent* content; 
130         int i = 0;
131
132         /*Reading the input images from given input directory*/
133
134         dir= opendir(imgdirpath);
135         if(!dir){
136                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
137                 return 1;
138         }else   {
139                 fprintf(stderr,"Folder opened successfully\n");
140         }
141         
142         while((content=readdir(dir))!=NULL){
143                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
144                         continue;
145
146                 strcpy(dirptr->filename[i],content->d_name);
147                 i++;
148         }
149         return 0;       
150 }
151
152 int get_file_format(char *filename) {
153         unsigned int i;
154         static const char *extension[] = {"pgx", "pnm", "pgm", "ppm", "bmp","tif", "raw", "tga", "png", "j2k", "jp2", "jpt", "j2c", "jpc"  };
155         static const int format[] = { PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, TGA_DFMT, PNG_DFMT, J2K_CFMT, JP2_CFMT, JPT_CFMT, J2K_CFMT, J2K_CFMT };
156         char * ext = strrchr(filename, '.');
157         if (ext == NULL)
158                 return -1;
159         ext++;
160         if(ext) {
161                 for(i = 0; i < sizeof(format)/sizeof(*format); i++) {
162                         if(_strnicmp(ext, extension[i], 3) == 0) {
163                                 return format[i];
164                         }
165                 }
166         }
167
168         return -1;
169 }
170
171 char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_dparameters_t *parameters){
172         char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
173         char *temp_p, temp1[OPJ_PATH_LEN]="";
174
175         strcpy(image_filename,dirptr->filename[imageno]);
176         fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
177         parameters->decod_format = get_file_format(image_filename);
178         if (parameters->decod_format == -1)
179                 return 1;
180         sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
181         strncpy(parameters->infile, infilename, sizeof(infilename));
182
183         /*Set output file*/
184         strcpy(temp_ofname,strtok(image_filename,"."));
185         while((temp_p = strtok(NULL,".")) != NULL){
186                 strcat(temp_ofname,temp1);
187                 sprintf(temp1,".%s",temp_p);
188         }
189         if(img_fol->set_out_format==1){
190                 sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
191                 strncpy(parameters->outfile, outfilename, sizeof(outfilename));
192         }
193         return 0;
194 }
195
196 /* -------------------------------------------------------------------------- */
197 int parse_cmdline_decoder(int argc, char **argv, opj_dparameters_t *parameters,img_fol_t *img_fol, char *indexfilename) {
198         /* parse the command line */
199         int totlen, c;
200         opj_option_t long_option[]={
201                 {"ImgDir",REQ_ARG, NULL ,'y'},
202         };
203         const char optlist[] = "i:o:h";
204
205         OPJ_ARG_NOT_USED(indexfilename);
206
207         totlen=sizeof(long_option);
208         img_fol->set_out_format = 0;
209         do {
210                 c = opj_getopt_long(argc, argv,optlist,long_option,totlen);
211                 if (c == -1)
212                         break;
213                 switch (c) {
214                         case 'i':                       /* input file */
215                         {
216                                 char *infile = opj_optarg;
217                                 parameters->decod_format = get_file_format(infile);
218                                 switch(parameters->decod_format) {
219                                         case J2K_CFMT:
220                                         case JP2_CFMT:
221                                         case JPT_CFMT:
222                                                 break;
223                                         default:
224                                                 fprintf(stderr, 
225                                                         "!! Unrecognized format for infile : %s [accept only *.j2k, *.jp2, *.jpc or *.jpt] !!\n\n", 
226                                                         infile);
227                                                 return 1;
228                                 }
229                                 strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
230                         }
231                         break;
232
233                         /* ------------------------------------------------------ */
234
235                         case 'o':     /* output file */
236                         {
237                           char *outfile = opj_optarg;
238                           strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
239                         }
240                         break;
241                                 
242                                 /* ----------------------------------------------------- */
243
244                         case 'h':                       /* display an help description */
245                                 decode_help_display();
246                                 return 1;                               
247
248                                 /* ------------------------------------------------------ */
249
250                         case 'y':                       /* Image Directory path */
251                                 {
252                                         img_fol->imgdirpath = (char*)malloc(strlen(opj_optarg) + 1);
253                                         strcpy(img_fol->imgdirpath,opj_optarg);
254                                         img_fol->set_imgdir=1;
255                                 }
256                                 break;
257
258                                 /* ----------------------------------------------------- */
259                         
260                         default:
261                                 fprintf(stderr,"WARNING -> this option is not valid \"-%c %s\"\n",c, opj_optarg);
262                                 break;
263                 }
264         }while(c != -1);
265
266         /* check for possible errors */
267         if(img_fol->set_imgdir==1){
268                 if(!(parameters->infile[0]==0)){
269                         fprintf(stderr, "Error: options -ImgDir and -i cannot be used together !!\n");
270                         return 1;
271                 }
272                 if(img_fol->set_out_format == 0){
273                         fprintf(stderr, "Error: When -ImgDir is used, -OutFor <FORMAT> must be used !!\n");
274                         fprintf(stderr, "Only one format allowed! Valid format PGM, PPM, PNM, PGX, BMP, TIF, RAW and TGA!!\n");
275                         return 1;
276                 }
277                 if(!((parameters->outfile[0] == 0))){
278                         fprintf(stderr, "Error: options -ImgDir and -o cannot be used together !!\n");
279                         return 1;
280                 }
281         }else{
282                 if((parameters->infile[0] == 0) ) {
283                         fprintf(stderr, "Example: %s -i image.j2k\n",argv[0]);
284                         fprintf(stderr, "    Try: %s -h\n",argv[0]);
285                         return 1;
286                 }
287         }
288
289         return 0;
290 }
291
292 /* -------------------------------------------------------------------------- */
293
294 /**
295 sample error callback expecting a FILE* client object
296 */
297 void error_callback(const char *msg, void *client_data) {
298         FILE *stream = (FILE*)client_data;
299         fprintf(stream, "[ERROR] %s", msg);
300 }
301 /**
302 sample warning callback expecting a FILE* client object
303 */
304 void warning_callback(const char *msg, void *client_data) {
305         FILE *stream = (FILE*)client_data;
306         fprintf(stream, "[WARNING] %s", msg);
307 }
308 /**
309 sample debug callback expecting no client object
310 */
311 void info_callback(const char *msg, void *client_data) {
312         (void)client_data;
313         fprintf(stdout, "[INFO] %s", msg);
314 }
315
316 /* -------------------------------------------------------------------------- */
317
318 int main(int argc, char *argv[])
319 {
320         opj_dparameters_t parameters;   /* decompression parameters */
321         img_fol_t img_fol;
322         opj_event_mgr_t event_mgr;              /* event manager */
323         opj_image_t *image = NULL;
324         FILE *fsrc = NULL, *fout = NULL;
325         unsigned char *src = NULL;
326         int file_length;
327         int num_images;
328         int i,imageno;
329         dircnt_t *dirptr = NULL;
330         opj_dinfo_t* dinfo = NULL;      /* handle to a decompressor */
331         opj_cio_t *cio = NULL;
332         opj_codestream_info_t cstr_info;  /* Codestream information structure */
333         char indexfilename[OPJ_PATH_LEN];       /* index file name */
334
335         /* configure the event callbacks (not required) */
336         memset(&event_mgr, 0, sizeof(opj_event_mgr_t));
337         event_mgr.error_handler = error_callback;
338         event_mgr.warning_handler = warning_callback;
339         event_mgr.info_handler = info_callback;
340
341         /* set decoding parameters to default values */
342         opj_set_default_decoder_parameters(&parameters);
343
344         /* Initialize indexfilename and img_fol */
345         *indexfilename = 0;
346         memset(&img_fol,0,sizeof(img_fol_t));
347
348         /* parse input and get user encoding parameters */
349         if(parse_cmdline_decoder(argc, argv, &parameters,&img_fol, indexfilename) == 1) {
350                 return 1;
351         }
352
353         /* Initialize reading of directory */
354         if(img_fol.set_imgdir==1){      
355                 num_images=get_num_images(img_fol.imgdirpath);
356
357                 dirptr=(dircnt_t*)malloc(sizeof(dircnt_t));
358                 if(dirptr){
359                         dirptr->filename_buf = (char*)malloc(num_images*OPJ_PATH_LEN*sizeof(char));     /* Stores at max 10 image file names*/
360                         dirptr->filename = (char**) malloc(num_images*sizeof(char*));
361
362                         if(!dirptr->filename_buf){
363                                 return 1;
364                         }
365                         for(i=0;i<num_images;i++){
366                                 dirptr->filename[i] = dirptr->filename_buf + i*OPJ_PATH_LEN;
367                         }
368                 }
369                 if(load_images(dirptr,img_fol.imgdirpath)==1){
370                         return 1;
371                 }
372                 if (num_images==0){
373                         fprintf(stdout,"Folder is empty\n");
374                         return 1;
375                 }
376         }else{
377                 num_images=1;
378         }
379
380         /* */
381         if (parameters.outfile[0] != 0)
382           {
383           fout = fopen(parameters.outfile,"w");
384     if (!fout)
385       {
386       fprintf(stderr, "ERROR -> failed to open %s for reading\n", parameters.outfile);
387       return 1;
388       }
389           }
390         else
391           fout = stdout;
392
393         /*Encoding image one by one*/
394         for(imageno = 0; imageno < num_images ; imageno++)
395   {
396                 image = NULL;
397                 fprintf(stderr,"\n");
398
399                 if(img_fol.set_imgdir==1){
400                         if (get_next_file(imageno, dirptr,&img_fol, &parameters)) {
401                                 fprintf(stderr,"skipping file...\n");
402                                 continue;
403                         }
404                 }
405
406                 /* read the input file and put it in memory */
407                 /* ---------------------------------------- */
408                 fsrc = fopen(parameters.infile, "rb");
409                 if (!fsrc) {
410                         fprintf(stderr, "ERROR -> failed to open %s for reading\n", parameters.infile);
411                         return 1;
412                 }
413                 fseek(fsrc, 0, SEEK_END);
414                 file_length = ftell(fsrc);
415                 fseek(fsrc, 0, SEEK_SET);
416                 src = (unsigned char *) malloc(file_length);
417                 if (fread(src, 1, file_length, fsrc) != (size_t)file_length)
418                 {
419                         free(src);
420                         fclose(fsrc);
421                         fclose(fout);
422                         fprintf(stderr, "\nERROR: fread return a number of element different from the expected.\n");
423                         return 1;
424                 }
425                 fclose(fsrc);
426
427                 /* decode the code-stream */
428                 /* ---------------------- */
429
430                 switch(parameters.decod_format) {
431                 case J2K_CFMT:
432                 {
433                         /* JPEG-2000 codestream */
434
435                         /* get a decoder handle */
436                         dinfo = opj_create_decompress(CODEC_J2K);
437
438                         /* catch events using our callbacks and give a local context */
439                         opj_set_event_mgr((opj_common_ptr)dinfo, &event_mgr, stderr);
440
441                         /* setup the decoder decoding parameters using user parameters */
442                         opj_setup_decoder(dinfo, &parameters);
443
444                         /* open a byte stream */
445                         cio = opj_cio_open((opj_common_ptr)dinfo, src, file_length);
446
447                         /* decode the stream and fill the image structure */
448                         if (*indexfilename)                             /* If need to extract codestream information*/
449                                 image = opj_decode_with_info(dinfo, cio, &cstr_info);
450                         else
451                                 image = opj_decode(dinfo, cio);
452                         if(!image) {
453                                 fprintf(stderr, "ERROR -> j2k_to_image: failed to decode image!\n");
454                                 opj_destroy_decompress(dinfo);
455                                 opj_cio_close(cio);
456                                 fclose(fout);
457                                 free(src);
458                                 return 1;
459                         }
460                         /* dump image */
461       j2k_dump_image(fout, image);
462
463                         /* dump cp */
464       j2k_dump_cp(fout, image, ((opj_j2k_t*)dinfo->j2k_handle)->cp);
465
466                         /* close the byte stream */
467                         opj_cio_close(cio);
468
469                         /* Write the index to disk */
470                         if (*indexfilename) {
471                                 opj_bool bSuccess;
472                                 bSuccess = write_index_file(&cstr_info, indexfilename);
473                                 if (bSuccess) {
474                                         fprintf(stderr, "Failed to output index file\n");
475                                 }
476                         }
477                 }
478                 break;
479
480                 case JP2_CFMT:
481                 {
482                         /* JPEG 2000 compressed image data */
483
484                         /* get a decoder handle */
485                         dinfo = opj_create_decompress(CODEC_JP2);
486
487                         /* catch events using our callbacks and give a local context */
488                         opj_set_event_mgr((opj_common_ptr)dinfo, &event_mgr, stderr);
489
490                         /* setup the decoder decoding parameters using the current image and user parameters */
491                         opj_setup_decoder(dinfo, &parameters);
492
493                         /* open a byte stream */
494                         cio = opj_cio_open((opj_common_ptr)dinfo, src, file_length);
495
496                         /* decode the stream and fill the image structure */
497                         if (*indexfilename)                             /* If need to extract codestream information*/
498                                 image = opj_decode_with_info(dinfo, cio, &cstr_info);
499                         else
500                                 image = opj_decode(dinfo, cio);                 
501                         if(!image) {
502                                 fprintf(stderr, "ERROR -> j2k_to_image: failed to decode image!\n");
503                                 opj_destroy_decompress(dinfo);
504                                 opj_cio_close(cio);
505                                 fclose(fout);
506                                 free(src);
507                                 return 1;
508                         }
509                         /* dump image */
510           if(image->icc_profile_buf)
511          {
512           free(image->icc_profile_buf); image->icc_profile_buf = NULL;
513          }      
514       j2k_dump_image(fout, image);
515
516                         /* dump cp */
517       j2k_dump_cp(fout, image, ((opj_jp2_t*)dinfo->jp2_handle)->j2k->cp);
518
519                         /* close the byte stream */
520                         opj_cio_close(cio);
521
522                         /* Write the index to disk */
523                         if (*indexfilename) {
524                                 opj_bool bSuccess;
525                                 bSuccess = write_index_file(&cstr_info, indexfilename);
526                                 if (bSuccess) {
527                                         fprintf(stderr, "Failed to output index file\n");
528                                 }
529                         }
530                 }
531                 break;
532
533                 case JPT_CFMT:
534                 {
535                         /* JPEG 2000, JPIP */
536
537                         /* get a decoder handle */
538                         dinfo = opj_create_decompress(CODEC_JPT);
539
540                         /* catch events using our callbacks and give a local context */
541                         opj_set_event_mgr((opj_common_ptr)dinfo, &event_mgr, stderr);
542
543                         /* setup the decoder decoding parameters using user parameters */
544                         opj_setup_decoder(dinfo, &parameters);
545
546                         /* open a byte stream */
547                         cio = opj_cio_open((opj_common_ptr)dinfo, src, file_length);
548
549                         /* decode the stream and fill the image structure */
550                         if (*indexfilename)                             /* If need to extract codestream information*/
551                                 image = opj_decode_with_info(dinfo, cio, &cstr_info);
552                         else
553                                 image = opj_decode(dinfo, cio);
554                         if(!image) {
555                                 fprintf(stderr, "ERROR -> j2k_to_image: failed to decode image!\n");
556                                 opj_destroy_decompress(dinfo);
557                                 opj_cio_close(cio);
558                                 fclose(fout);
559                                 free(src);
560                                 return 1;
561                         }
562
563                         /* close the byte stream */
564                         opj_cio_close(cio);
565
566                         /* Write the index to disk */
567                         if (*indexfilename) {
568                                 opj_bool bSuccess;
569                                 bSuccess = write_index_file(&cstr_info, indexfilename);
570                                 if (bSuccess) {
571                                         fprintf(stderr, "Failed to output index file\n");
572                                 }
573                         }
574                 }
575                 break;
576
577                 default:
578                         fprintf(stderr, "skipping file..\n");
579                         continue;
580         }
581
582                 /* free the memory containing the code-stream */
583                 free(src);
584                 src = NULL;
585
586                 /* free remaining structures */
587                 if(dinfo) {
588                         opj_destroy_decompress(dinfo);
589                 }
590                 /* free codestream information structure */
591                 if (*indexfilename)     
592                         opj_destroy_cstr_info(&cstr_info);
593                 /* free image data structure */
594                 opj_image_destroy(image);
595
596         }
597
598         fclose(fout);
599
600   return EXIT_SUCCESS;
601 }
602
603
604 static void j2k_dump_image(FILE *fd, opj_image_t * img) {
605         int compno;
606         fprintf(fd, "image {\n");
607         fprintf(fd, "  x0=%d, y0=%d, x1=%d, y1=%d\n", img->x0, img->y0, img->x1, img->y1);
608         fprintf(fd, "  numcomps=%d\n", img->numcomps);
609         for (compno = 0; compno < img->numcomps; compno++) {
610                 opj_image_comp_t *comp = &img->comps[compno];
611                 fprintf(fd, "  comp %d {\n", compno);
612                 fprintf(fd, "    dx=%d, dy=%d\n", comp->dx, comp->dy);
613                 fprintf(fd, "    prec=%d\n", comp->prec);
614                 /*fprintf(fd, "    bpp=%d\n", comp->bpp);*/
615                 fprintf(fd, "    sgnd=%d\n", comp->sgnd);
616                 fprintf(fd, "  }\n");
617         }
618         fprintf(fd, "}\n");
619 }
620
621 static void j2k_dump_cp(FILE *fd, opj_image_t * img, opj_cp_t * cp) {
622         int tileno, compno, layno, bandno, resno, numbands;
623         fprintf(fd, "coding parameters {\n");
624         fprintf(fd, "  tx0=%d, ty0=%d\n", cp->tx0, cp->ty0);
625         fprintf(fd, "  tdx=%d, tdy=%d\n", cp->tdx, cp->tdy);
626         fprintf(fd, "  tw=%d, th=%d\n", cp->tw, cp->th);
627         for (tileno = 0; tileno < cp->tw * cp->th; tileno++) {
628                 opj_tcp_t *tcp = &cp->tcps[tileno];
629                 fprintf(fd, "  tile %d {\n", tileno);
630                 fprintf(fd, "    csty=%x\n", tcp->csty);
631                 fprintf(fd, "    prg=%d\n", tcp->prg);
632                 fprintf(fd, "    numlayers=%d\n", tcp->numlayers);
633                 fprintf(fd, "    mct=%d\n", tcp->mct);
634                 fprintf(fd, "    rates=");
635                 for (layno = 0; layno < tcp->numlayers; layno++) {
636                         fprintf(fd, "%.1f ", tcp->rates[layno]);
637                 }
638                 fprintf(fd, "\n");
639                 for (compno = 0; compno < img->numcomps; compno++) {
640                         opj_tccp_t *tccp = &tcp->tccps[compno];
641                         fprintf(fd, "    comp %d {\n", compno);
642                         fprintf(fd, "      csty=%x\n", tccp->csty);
643                         fprintf(fd, "      numresolutions=%d\n", tccp->numresolutions);
644                         fprintf(fd, "      cblkw=%d\n", tccp->cblkw);
645                         fprintf(fd, "      cblkh=%d\n", tccp->cblkh);
646                         fprintf(fd, "      cblksty=%x\n", tccp->cblksty);
647                         fprintf(fd, "      qmfbid=%d\n", tccp->qmfbid);
648                         fprintf(fd, "      qntsty=%d\n", tccp->qntsty);
649                         fprintf(fd, "      numgbits=%d\n", tccp->numgbits);
650                         fprintf(fd, "      roishift=%d\n", tccp->roishift);
651                         fprintf(fd, "      stepsizes=");
652                         numbands = tccp->qntsty == J2K_CCP_QNTSTY_SIQNT ? 1 : tccp->numresolutions * 3 - 2;
653                         for (bandno = 0; bandno < numbands; bandno++) {
654                                 fprintf(fd, "(%d,%d) ", tccp->stepsizes[bandno].mant,
655                                         tccp->stepsizes[bandno].expn);
656                         }
657                         fprintf(fd, "\n");
658                         
659                         if (tccp->csty & J2K_CCP_CSTY_PRT) {
660                                 fprintf(fd, "      prcw=");
661                                 for (resno = 0; resno < tccp->numresolutions; resno++) {
662                                         fprintf(fd, "%d ", tccp->prcw[resno]);
663                                 }
664                                 fprintf(fd, "\n");
665                                 fprintf(fd, "      prch=");
666                                 for (resno = 0; resno < tccp->numresolutions; resno++) {
667                                         fprintf(fd, "%d ", tccp->prch[resno]);
668                                 }
669                                 fprintf(fd, "\n");
670                         }
671                         fprintf(fd, "    }\n");
672                 }
673                 fprintf(fd, "  }\n");
674         }
675         fprintf(fd, "}\n");
676 }
677