2003-11-27 11:07:31 +01:00
|
|
|
/*
|
2017-05-09 15:44:46 +02:00
|
|
|
* The copyright in this software is being made available under the 2-clauses
|
|
|
|
* BSD License, included below. This software may be subject to other third
|
2014-04-03 17:30:57 +02:00
|
|
|
* party and contributor rights, including patent rights, and no such rights
|
|
|
|
* are granted under this license.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
|
|
|
|
* Copyright (c) 2002-2014, Professor Benoit Macq
|
2006-12-04 15:55:11 +01:00
|
|
|
* Copyright (c) 2001-2003, David Janssens
|
2003-11-27 11:07:31 +01:00
|
|
|
* Copyright (c) 2002-2003, Yannick Verschueren
|
2017-05-09 15:44:46 +02:00
|
|
|
* Copyright (c) 2003-2007, Francois-Olivier Devaux
|
2014-04-03 17:30:57 +02:00
|
|
|
* Copyright (c) 2003-2014, Antonin Descampe
|
2010-03-26 16:46:17 +01:00
|
|
|
* Copyright (c) 2005, Herve Drolon, FreeImage Team
|
2007-03-20 18:15:18 +01:00
|
|
|
* Copyright (c) 2006-2007, Parvatha Elangovan
|
2012-03-15 11:23:20 +01:00
|
|
|
* Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
|
2014-01-16 15:21:14 +01:00
|
|
|
* Copyright (c) 2011-2012, Centre National d'Etudes Spatiales (CNES), France
|
2012-11-15 16:22:29 +01:00
|
|
|
* Copyright (c) 2012, CS Systemes d'Information, France
|
2003-11-27 11:07:31 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2010-11-15 12:08:03 +01:00
|
|
|
|
2003-11-27 11:07:31 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2005-12-02 14:34:15 +01:00
|
|
|
#include <stdlib.h>
|
2007-08-30 11:51:20 +02:00
|
|
|
#include <math.h>
|
2012-05-29 11:30:03 +02:00
|
|
|
#include <assert.h>
|
2005-12-02 14:34:15 +01:00
|
|
|
|
2010-12-08 12:06:41 +01:00
|
|
|
#ifdef _WIN32
|
2010-10-05 12:33:15 +02:00
|
|
|
#include "windirent.h"
|
|
|
|
#else
|
|
|
|
#include <dirent.h>
|
2010-12-08 12:06:41 +01:00
|
|
|
#endif /* _WIN32 */
|
2003-11-27 11:07:31 +01:00
|
|
|
|
2010-12-08 12:06:41 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2012-05-29 11:30:03 +02:00
|
|
|
#define strcasecmp _stricmp
|
|
|
|
#define strncasecmp _strnicmp
|
2010-12-08 12:06:41 +01:00
|
|
|
#else
|
2010-03-07 22:27:37 +01:00
|
|
|
#include <strings.h>
|
2015-06-16 02:16:32 +02:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/times.h>
|
2010-12-08 12:06:41 +01:00
|
|
|
#endif /* _WIN32 */
|
2005-12-08 10:27:26 +01:00
|
|
|
|
2013-03-03 18:55:35 +01:00
|
|
|
#include "opj_apps_config.h"
|
2010-12-08 12:06:41 +01:00
|
|
|
#include "openjpeg.h"
|
2011-09-01 13:24:08 +02:00
|
|
|
#include "opj_getopt.h"
|
2010-12-08 12:06:41 +01:00
|
|
|
#include "convert.h"
|
|
|
|
#include "index.h"
|
2005-12-08 10:27:26 +01:00
|
|
|
|
2010-12-08 12:06:41 +01:00
|
|
|
#include "format_defs.h"
|
2015-09-25 22:04:58 +02:00
|
|
|
#include "opj_string.h"
|
2007-02-26 16:40:01 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef struct dircnt {
|
2014-01-16 15:21:14 +01:00
|
|
|
/** Buffer for holding images read from Directory*/
|
|
|
|
char *filename_buf;
|
|
|
|
/** Pointer to the buffer*/
|
|
|
|
char **filename;
|
2017-05-09 15:44:46 +02:00
|
|
|
} dircnt_t;
|
2007-02-26 16:40:01 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
typedef struct img_folder {
|
2014-01-16 15:21:14 +01:00
|
|
|
/** The directory path of the folder containing input images*/
|
|
|
|
char *imgdirpath;
|
|
|
|
/** Output format*/
|
|
|
|
char *out_format;
|
|
|
|
/** Enable option*/
|
|
|
|
char set_imgdir;
|
|
|
|
/** Enable Cod Format for output*/
|
|
|
|
char set_out_format;
|
2017-05-09 15:44:46 +02:00
|
|
|
} img_fol_t;
|
2007-02-26 16:40:01 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static void encode_help_display(void)
|
|
|
|
{
|
|
|
|
fprintf(stdout,
|
|
|
|
"\nThis is the opj_compress utility from the OpenJPEG project.\n"
|
2014-04-23 16:09:20 +02:00
|
|
|
"It compresses various image formats with the JPEG 2000 algorithm.\n"
|
2017-05-09 15:44:46 +02:00
|
|
|
"It has been compiled against openjp2 library v%s.\n\n", opj_version());
|
|
|
|
|
|
|
|
fprintf(stdout, "Default encoding options:\n");
|
|
|
|
fprintf(stdout, "-------------------------\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, " * Lossless\n");
|
|
|
|
fprintf(stdout, " * 1 tile\n");
|
|
|
|
fprintf(stdout, " * RGB->YCC conversion if at least 3 components\n");
|
|
|
|
fprintf(stdout, " * Size of precinct : 2^15 x 2^15 (means 1 precinct)\n");
|
|
|
|
fprintf(stdout, " * Size of code-block : 64 x 64\n");
|
|
|
|
fprintf(stdout, " * Number of resolutions: 6\n");
|
|
|
|
fprintf(stdout, " * No SOP marker in the codestream\n");
|
|
|
|
fprintf(stdout, " * No EPH marker in the codestream\n");
|
|
|
|
fprintf(stdout, " * No sub-sampling in x or y direction\n");
|
|
|
|
fprintf(stdout, " * No mode switch activated\n");
|
|
|
|
fprintf(stdout, " * Progression order: LRCP\n");
|
|
|
|
#ifdef FIXME_INDEX
|
|
|
|
fprintf(stdout, " * No index file\n");
|
|
|
|
#endif /* FIXME_INDEX */
|
|
|
|
fprintf(stdout, " * No ROI upshifted\n");
|
|
|
|
fprintf(stdout, " * No offset of the origin of the image\n");
|
|
|
|
fprintf(stdout, " * No offset of the origin of the tiles\n");
|
|
|
|
fprintf(stdout, " * Reversible DWT 5-3\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
/* UniPG>> */
|
2006-12-04 15:55:11 +01:00
|
|
|
#ifdef USE_JPWL
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, " * No JPWL protection\n");
|
2006-12-04 15:55:11 +01:00
|
|
|
#endif /* USE_JPWL */
|
2014-01-16 15:21:14 +01:00
|
|
|
/* <<UniPG */
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "\n");
|
|
|
|
|
|
|
|
fprintf(stdout, "Note:\n");
|
|
|
|
fprintf(stdout, "-----\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"The markers written to the main_header are : SOC SIZ COD QCD COM.\n");
|
|
|
|
fprintf(stdout, "COD and QCD never appear in the tile_header.\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
|
|
|
|
fprintf(stdout, "Parameters:\n");
|
|
|
|
fprintf(stdout, "-----------\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "Required Parameters (except with -h):\n");
|
|
|
|
fprintf(stdout, "One of the two options -ImgDir or -i must be used\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "-i <file>\n");
|
|
|
|
fprintf(stdout, " Input file\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Known extensions are <PBM|PGM|PPM|PNM|PAM|PGX|PNG|BMP|TIF|RAW|RAWL|TGA>\n");
|
|
|
|
fprintf(stdout, " If used, '-o <file>' must be provided\n");
|
|
|
|
fprintf(stdout, "-o <compressed file>\n");
|
|
|
|
fprintf(stdout, " Output file (accepted extensions are j2k or jp2).\n");
|
|
|
|
fprintf(stdout, "-ImgDir <dir>\n");
|
|
|
|
fprintf(stdout, " Image file Directory path (example ../Images) \n");
|
|
|
|
fprintf(stdout, " When using this option -OutFor must be used\n");
|
|
|
|
fprintf(stdout, "-OutFor <J2K|J2C|JP2>\n");
|
|
|
|
fprintf(stdout, " Output format for compressed files.\n");
|
|
|
|
fprintf(stdout, " Required only if -ImgDir is used\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"-F <width>,<height>,<ncomp>,<bitdepth>,{s,u}@<dx1>x<dy1>:...:<dxn>x<dyn>\n");
|
|
|
|
fprintf(stdout, " Characteristics of the raw input image\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" If subsampling is omitted, 1x1 is assumed for all components\n");
|
|
|
|
fprintf(stdout, " Example: -F 512,512,3,8,u@1x1:2x2:2x2\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" for raw 512x512 image with 4:2:0 subsampling\n");
|
|
|
|
fprintf(stdout, " Required only if RAW or RAWL input file is provided.\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "Optional Parameters:\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "-h\n");
|
|
|
|
fprintf(stdout, " Display the help information.\n");
|
|
|
|
fprintf(stdout, "-r <compression ratio>,<compression ratio>,...\n");
|
|
|
|
fprintf(stdout, " Different compression ratios for successive layers.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" The rate specified for each quality level is the desired\n");
|
2017-09-01 19:16:35 +02:00
|
|
|
fprintf(stdout, " compression factor (use 1 for lossless)\n");
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, " Decreasing ratios required.\n");
|
2017-09-01 19:16:35 +02:00
|
|
|
fprintf(stdout, " Example: -r 20,10,1 means \n");
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, " quality layer 1: compress 20x, \n");
|
|
|
|
fprintf(stdout, " quality layer 2: compress 10x \n");
|
|
|
|
fprintf(stdout, " quality layer 3: compress lossless\n");
|
|
|
|
fprintf(stdout, " Options -r and -q cannot be used together.\n");
|
|
|
|
fprintf(stdout, "-q <psnr value>,<psnr value>,<psnr value>,...\n");
|
|
|
|
fprintf(stdout, " Different psnr for successive layers (-q 30,40,50).\n");
|
2017-09-01 19:16:35 +02:00
|
|
|
fprintf(stdout, " Increasing PSNR values required, except 0 which can\n");
|
|
|
|
fprintf(stdout, " be used for the last layer to indicate it is lossless.\n");
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, " Options -r and -q cannot be used together.\n");
|
|
|
|
fprintf(stdout, "-n <number of resolutions>\n");
|
|
|
|
fprintf(stdout, " Number of resolutions.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" It corresponds to the number of DWT decompositions +1. \n");
|
|
|
|
fprintf(stdout, " Default: 6.\n");
|
|
|
|
fprintf(stdout, "-b <cblk width>,<cblk height>\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Code-block size. The dimension must respect the constraint \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" defined in the JPEG-2000 standard (no dimension smaller than 4 \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" or greater than 1024, no code-block with more than 4096 coefficients).\n");
|
|
|
|
fprintf(stdout, " The maximum value authorized is 64x64. \n");
|
|
|
|
fprintf(stdout, " Default: 64x64.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"-c [<prec width>,<prec height>],[<prec width>,<prec height>],...\n");
|
|
|
|
fprintf(stdout, " Precinct size. Values specified must be power of 2. \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Multiple records may be supplied, in which case the first record refers\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" to the highest resolution level and subsequent records to lower \n");
|
|
|
|
fprintf(stdout,
|
2018-06-16 16:17:58 +02:00
|
|
|
" resolution levels. The last specified record is halved successively for each \n");
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, " remaining lower resolution levels.\n");
|
2018-03-12 14:24:20 +01:00
|
|
|
fprintf(stdout, " Default: 2^15x2^15 at each resolution.\n");
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "-t <tile width>,<tile height>\n");
|
|
|
|
fprintf(stdout, " Tile size.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Default: the dimension of the whole image, thus only one tile.\n");
|
|
|
|
fprintf(stdout, "-p <LRCP|RLCP|RPCL|PCRL|CPRL>\n");
|
|
|
|
fprintf(stdout, " Progression order.\n");
|
|
|
|
fprintf(stdout, " Default: LRCP.\n");
|
|
|
|
fprintf(stdout, "-s <subX,subY>\n");
|
|
|
|
fprintf(stdout, " Subsampling factor.\n");
|
|
|
|
fprintf(stdout, " Subsampling bigger than 2 can produce error\n");
|
|
|
|
fprintf(stdout, " Default: no subsampling.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"-POC <progression order change>/<progression order change>/...\n");
|
|
|
|
fprintf(stdout, " Progression order change.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" The syntax of a progression order change is the following:\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" T<tile>=<resStart>,<compStart>,<layerEnd>,<resEnd>,<compEnd>,<progOrder>\n");
|
|
|
|
fprintf(stdout, " Example: -POC T1=0,0,1,5,3,CPRL/T1=5,0,1,6,3,CPRL\n");
|
|
|
|
fprintf(stdout, "-SOP\n");
|
|
|
|
fprintf(stdout, " Write SOP marker before each packet.\n");
|
|
|
|
fprintf(stdout, "-EPH\n");
|
|
|
|
fprintf(stdout, " Write EPH marker after each header packet.\n");
|
|
|
|
fprintf(stdout, "-M <key value>\n");
|
|
|
|
fprintf(stdout, " Mode switch.\n");
|
|
|
|
fprintf(stdout, " [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL)\n");
|
|
|
|
fprintf(stdout, " 8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)]\n");
|
|
|
|
fprintf(stdout, " Indicate multiple modes by adding their values.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Example: RESTART(4) + RESET(2) + SEGMARK(32) => -M 38\n");
|
|
|
|
fprintf(stdout, "-TP <R|L|C>\n");
|
|
|
|
fprintf(stdout, " Divide packets of every tile into tile-parts.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Division is made by grouping Resolutions (R), Layers (L)\n");
|
|
|
|
fprintf(stdout, " or Components (C).\n");
|
|
|
|
#ifdef FIXME_INDEX
|
|
|
|
fprintf(stdout, "-x <index file>\n");
|
|
|
|
fprintf(stdout, " Create an index file.\n");
|
|
|
|
#endif /*FIXME_INDEX*/
|
|
|
|
fprintf(stdout, "-ROI c=<component index>,U=<upshifting value>\n");
|
|
|
|
fprintf(stdout, " Quantization indices upshifted for a component. \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Warning: This option does not implement the usual ROI (Region of Interest).\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" It should be understood as a 'Component of Interest'. It offers the \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" possibility to upshift the value of a component during quantization step.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" The value after c= is the component number [0, 1, 2, ...] and the value \n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" after U= is the value of upshifting. U must be in the range [0, 37].\n");
|
|
|
|
fprintf(stdout, "-d <image offset X,image offset Y>\n");
|
|
|
|
fprintf(stdout, " Offset of the origin of the image.\n");
|
|
|
|
fprintf(stdout, "-T <tile offset X,tile offset Y>\n");
|
|
|
|
fprintf(stdout, " Offset of the origin of the tiles.\n");
|
|
|
|
fprintf(stdout, "-I\n");
|
|
|
|
fprintf(stdout, " Use the irreversible DWT 9-7.\n");
|
|
|
|
fprintf(stdout, "-mct <0|1|2>\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Explicitly specifies if a Multiple Component Transform has to be used.\n");
|
|
|
|
fprintf(stdout, " 0: no MCT ; 1: RGB->YCC conversion ; 2: custom MCT.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" If custom MCT, \"-m\" option has to be used (see hereunder).\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" By default, RGB->YCC conversion is used if there are 3 components or more,\n");
|
|
|
|
fprintf(stdout, " no conversion otherwise.\n");
|
|
|
|
fprintf(stdout, "-m <file>\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Use array-based MCT, values are coma separated, line by line\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" No specific separators between lines, no space allowed between values.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" If this option is used, it automatically sets \"-mct\" option to 2.\n");
|
|
|
|
fprintf(stdout, "-cinema2K <24|48>\n");
|
|
|
|
fprintf(stdout, " Digital Cinema 2K profile compliant codestream.\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" Need to specify the frames per second for a 2K resolution.\n");
|
|
|
|
fprintf(stdout, " Only 24 or 48 fps are currently allowed.\n");
|
|
|
|
fprintf(stdout, "-cinema4K\n");
|
|
|
|
fprintf(stdout, " Digital Cinema 4K profile compliant codestream.\n");
|
|
|
|
fprintf(stdout, " Frames per second not required. Default value is 24fps.\n");
|
|
|
|
fprintf(stdout, "-jpip\n");
|
|
|
|
fprintf(stdout, " Write jpip codestream index box in JP2 output file.\n");
|
|
|
|
fprintf(stdout, " Currently supports only RPCL order.\n");
|
|
|
|
fprintf(stdout, "-C <comment>\n");
|
|
|
|
fprintf(stdout, " Add <comment> in the comment marker segment.\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
/* UniPG>> */
|
2006-12-04 15:55:11 +01:00
|
|
|
#ifdef USE_JPWL
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "-W <params>\n");
|
|
|
|
fprintf(stdout, " Adoption of JPWL (Part 11) capabilities (-W params)\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" The <params> field can be written and repeated in any order:\n");
|
|
|
|
fprintf(stdout, " [h<tilepart><=type>,s<tilepart><=method>,a=<addr>,...\n");
|
|
|
|
fprintf(stdout, " ...,z=<size>,g=<range>,p<tilepart:pack><=type>]\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" h selects the header error protection (EPB): 'type' can be\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" if 'tilepart' is absent, it is for main and tile headers\n");
|
|
|
|
fprintf(stdout, " if 'tilepart' is present, it applies from that tile\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" onwards, up to the next h<> spec, or to the last tilepart\n");
|
|
|
|
fprintf(stdout, " in the codestream (max. %d specs)\n",
|
|
|
|
JPWL_MAX_NO_TILESPECS);
|
|
|
|
fprintf(stdout,
|
|
|
|
" p selects the packet error protection (EEP/UEP with EPBs)\n");
|
|
|
|
fprintf(stdout, " to be applied to raw data: 'type' can be\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" if 'tilepart:pack' is absent, it is from tile 0, packet 0\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" if 'tilepart:pack' is present, it applies from that tile\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" and that packet onwards, up to the next packet spec\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" or to the last packet in the last tilepart in the stream\n");
|
|
|
|
fprintf(stdout, " (max. %d specs)\n", JPWL_MAX_NO_PACKSPECS);
|
|
|
|
fprintf(stdout,
|
|
|
|
" s enables sensitivity data insertion (ESD): 'method' can be\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" [-1=NO ESD 0=RELATIVE ERROR 1=MSE 2=MSE REDUCTION 3=PSNR\n");
|
|
|
|
fprintf(stdout, " 4=PSNR INCREMENT 5=MAXERR 6=TSE 7=RESERVED]\n");
|
|
|
|
fprintf(stdout, " if 'tilepart' is absent, it is for main header only\n");
|
|
|
|
fprintf(stdout, " if 'tilepart' is present, it applies from that tile\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" onwards, up to the next s<> spec, or to the last tilepart\n");
|
|
|
|
fprintf(stdout, " in the codestream (max. %d specs)\n",
|
|
|
|
JPWL_MAX_NO_TILESPECS);
|
|
|
|
fprintf(stdout, " g determines the addressing mode: <range> can be\n");
|
|
|
|
fprintf(stdout, " [0=PACKET 1=BYTE RANGE 2=PACKET RANGE]\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" a determines the size of data addressing: <addr> can be\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" 2/4 bytes (small/large codestreams). If not set, auto-mode\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" z determines the size of sensitivity values: <size> can be\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" 1/2 bytes, for the transformed pseudo-floating point value\n");
|
|
|
|
fprintf(stdout, " ex.:\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" h,h0=64,h3=16,h5=32,p0=78,p0:24=56,p1,p3:0=0,p3:20=32,s=0,\n");
|
|
|
|
fprintf(stdout, " s0=6,s3=-1,a=0,g=1,z=1\n");
|
|
|
|
fprintf(stdout, " means\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" predefined EPB in MH, rs(64,32) from TPH 0 to TPH 2,\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" CRC-16 in TPH 3 and TPH 4, CRC-32 in remaining TPHs,\n");
|
|
|
|
fprintf(stdout, " UEP rs(78,32) for packets 0 to 23 of tile 0,\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" UEP rs(56,32) for packs. 24 to the last of tilepart 0,\n");
|
|
|
|
fprintf(stdout, " UEP rs default for packets of tilepart 1,\n");
|
|
|
|
fprintf(stdout, " no UEP for packets 0 to 19 of tilepart 3,\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" UEP CRC-32 for packs. 20 of tilepart 3 to last tilepart,\n");
|
|
|
|
fprintf(stdout, " relative sensitivity ESD for MH,\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" TSE ESD from TPH 0 to TPH 2, byte range with automatic\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" size of addresses and 1 byte for each sensitivity value\n");
|
|
|
|
fprintf(stdout, " ex.:\n");
|
|
|
|
fprintf(stdout, " h,s,p\n");
|
|
|
|
fprintf(stdout, " means\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" default protection to headers (MH and TPHs) as well as\n");
|
|
|
|
fprintf(stdout, " data packets, one ESD in MH\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" N.B.: use the following recommendations when specifying\n");
|
|
|
|
fprintf(stdout, " the JPWL parameters list\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
" - when you use UEP, always pair the 'p' option with 'h'\n");
|
2006-12-04 15:55:11 +01:00
|
|
|
#endif /* USE_JPWL */
|
2014-01-16 15:21:14 +01:00
|
|
|
/* <<UniPG */
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "\n");
|
2014-04-23 17:19:57 +02:00
|
|
|
#ifdef FIXME_INDEX
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "Index structure:\n");
|
|
|
|
fprintf(stdout, "----------------\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "Image_height Image_width\n");
|
|
|
|
fprintf(stdout, "progression order\n");
|
|
|
|
fprintf(stdout, "Tiles_size_X Tiles_size_Y\n");
|
|
|
|
fprintf(stdout, "Tiles_nb_X Tiles_nb_Y\n");
|
|
|
|
fprintf(stdout, "Components_nb\n");
|
|
|
|
fprintf(stdout, "Layers_nb\n");
|
|
|
|
fprintf(stdout, "decomposition_levels\n");
|
|
|
|
fprintf(stdout, "[Precincts_size_X_res_Nr Precincts_size_Y_res_Nr]...\n");
|
|
|
|
fprintf(stdout, " [Precincts_size_X_res_0 Precincts_size_Y_res_0]\n");
|
|
|
|
fprintf(stdout, "Main_header_start_position\n");
|
|
|
|
fprintf(stdout, "Main_header_end_position\n");
|
|
|
|
fprintf(stdout, "Codestream_size\n");
|
|
|
|
fprintf(stdout, "\n");
|
|
|
|
fprintf(stdout, "INFO ON TILES\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"tileno start_pos end_hd end_tile nbparts disto nbpix disto/nbpix\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"Tile_0 start_pos end_Theader end_pos NumParts TotalDisto NumPix MaxMSE\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"Tile_1 '' '' '' '' '' '' ''\n");
|
|
|
|
fprintf(stdout, "...\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"Tile_Nt '' '' '' '' '' '' ''\n");
|
|
|
|
fprintf(stdout, "...\n");
|
|
|
|
fprintf(stdout, "TILE 0 DETAILS\n");
|
|
|
|
fprintf(stdout, "part_nb tileno num_packs start_pos end_tph_pos end_pos\n");
|
|
|
|
fprintf(stdout, "...\n");
|
|
|
|
fprintf(stdout, "Progression_string\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"pack_nb tileno layno resno compno precno start_pos end_ph_pos end_pos disto\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"Tpacket_0 Tile layer res. comp. prec. start_pos end_pos disto\n");
|
|
|
|
fprintf(stdout, "...\n");
|
|
|
|
fprintf(stdout,
|
|
|
|
"Tpacket_Np '' '' '' '' '' '' '' ''\n");
|
|
|
|
fprintf(stdout, "MaxDisto\n");
|
|
|
|
fprintf(stdout, "TotalDisto\n\n");
|
2014-04-23 17:19:57 +02:00
|
|
|
#endif /*FIXME_INDEX*/
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static OPJ_PROG_ORDER give_progression(const char progression[4])
|
|
|
|
{
|
|
|
|
if (strncmp(progression, "LRCP", 4) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return OPJ_LRCP;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (strncmp(progression, "RLCP", 4) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return OPJ_RLCP;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (strncmp(progression, "RPCL", 4) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return OPJ_RPCL;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (strncmp(progression, "PCRL", 4) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return OPJ_PCRL;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (strncmp(progression, "CPRL", 4) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return OPJ_CPRL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OPJ_PROG_UNKNOWN;
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static unsigned int get_num_images(char *imgdirpath)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
DIR *dir;
|
|
|
|
struct dirent* content;
|
|
|
|
unsigned int num_images = 0;
|
|
|
|
|
|
|
|
/*Reading the input images from given input directory*/
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
dir = opendir(imgdirpath);
|
|
|
|
if (!dir) {
|
|
|
|
fprintf(stderr, "Could not open Folder %s\n", imgdirpath);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
num_images = 0;
|
|
|
|
while ((content = readdir(dir)) != NULL) {
|
|
|
|
if (strcmp(".", content->d_name) == 0 || strcmp("..", content->d_name) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
continue;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
num_images++;
|
|
|
|
}
|
2015-09-24 23:32:03 +02:00
|
|
|
closedir(dir);
|
2014-01-16 15:21:14 +01:00
|
|
|
return num_images;
|
2007-02-26 16:40:01 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static int load_images(dircnt_t *dirptr, char *imgdirpath)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
DIR *dir;
|
|
|
|
struct dirent* content;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/*Reading the input images from given input directory*/
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
dir = opendir(imgdirpath);
|
|
|
|
if (!dir) {
|
|
|
|
fprintf(stderr, "Could not open Folder %s\n", imgdirpath);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Folder opened successfully\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
while ((content = readdir(dir)) != NULL) {
|
|
|
|
if (strcmp(".", content->d_name) == 0 || strcmp("..", content->d_name) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
continue;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
strcpy(dirptr->filename[i], content->d_name);
|
2014-01-16 15:21:14 +01:00
|
|
|
i++;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
closedir(dir);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
2007-02-26 16:40:01 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static int get_file_format(char *filename)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
unsigned int i;
|
|
|
|
static const char *extension[] = {
|
|
|
|
"pgx", "pnm", "pgm", "ppm", "pbm", "pam", "bmp", "tif", "raw", "rawl", "tga", "png", "j2k", "jp2", "j2c", "jpc"
|
2006-07-21 22:28:44 +02:00
|
|
|
};
|
2014-01-16 15:21:14 +01:00
|
|
|
static const int format[] = {
|
|
|
|
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
|
2006-07-21 22:28:44 +02:00
|
|
|
};
|
2014-01-16 15:21:14 +01:00
|
|
|
char * ext = strrchr(filename, '.');
|
2017-05-09 15:44:46 +02:00
|
|
|
if (ext == NULL) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return -1;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
ext++;
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < sizeof(format) / sizeof(*format); i++) {
|
|
|
|
if (strcasecmp(ext, extension[i]) == 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return format[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static char * get_file_name(char *name)
|
|
|
|
{
|
|
|
|
char *fname = strtok(name, ".");
|
2014-01-16 15:21:14 +01:00
|
|
|
return fname;
|
2007-02-26 16:40:01 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static char get_next_file(int imageno, dircnt_t *dirptr, img_fol_t *img_fol,
|
|
|
|
opj_cparameters_t *parameters)
|
|
|
|
{
|
|
|
|
char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],
|
|
|
|
outfilename[OPJ_PATH_LEN], temp_ofname[OPJ_PATH_LEN];
|
|
|
|
char *temp_p, temp1[OPJ_PATH_LEN] = "";
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
strcpy(image_filename, dirptr->filename[imageno]);
|
|
|
|
fprintf(stderr, "File Number %d \"%s\"\n", imageno, image_filename);
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->decod_format = get_file_format(image_filename);
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters->decod_format == -1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
|
|
|
sprintf(infilename, "%s/%s", img_fol->imgdirpath, image_filename);
|
|
|
|
if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile),
|
|
|
|
infilename) != 0) {
|
2015-09-25 22:04:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/*Set output file*/
|
2017-05-09 15:44:46 +02:00
|
|
|
strcpy(temp_ofname, get_file_name(image_filename));
|
|
|
|
while ((temp_p = strtok(NULL, ".")) != NULL) {
|
|
|
|
strcat(temp_ofname, temp1);
|
|
|
|
sprintf(temp1, ".%s", temp_p);
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol->set_out_format == 1) {
|
|
|
|
sprintf(outfilename, "%s/%s.%s", img_fol->imgdirpath, temp_ofname,
|
|
|
|
img_fol->out_format);
|
|
|
|
if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
|
|
|
|
outfilename) != 0) {
|
2015-09-25 22:04:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
return 0;
|
2007-02-26 16:40:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------------------ */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
static int parse_cmdline_encoder(int argc, char **argv,
|
|
|
|
opj_cparameters_t *parameters,
|
|
|
|
img_fol_t *img_fol, raw_cparameters_t *raw_cp, char *indexfilename,
|
|
|
|
size_t indexfilename_size)
|
|
|
|
{
|
2014-01-22 19:41:34 +01:00
|
|
|
OPJ_UINT32 i, j;
|
|
|
|
int totlen, c;
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_option_t long_option[] = {
|
|
|
|
{"cinema2K", REQ_ARG, NULL, 'w'},
|
|
|
|
{"cinema4K", NO_ARG, NULL, 'y'},
|
|
|
|
{"ImgDir", REQ_ARG, NULL, 'z'},
|
|
|
|
{"TP", REQ_ARG, NULL, 'u'},
|
|
|
|
{"SOP", NO_ARG, NULL, 'S'},
|
|
|
|
{"EPH", NO_ARG, NULL, 'E'},
|
|
|
|
{"OutFor", REQ_ARG, NULL, 'O'},
|
|
|
|
{"POC", REQ_ARG, NULL, 'P'},
|
|
|
|
{"ROI", REQ_ARG, NULL, 'R'},
|
|
|
|
{"jpip", NO_ARG, NULL, 'J'},
|
|
|
|
{"mct", REQ_ARG, NULL, 'Y'}
|
2014-01-16 15:21:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* parse the command line */
|
2014-03-25 13:38:29 +01:00
|
|
|
const char optlist[] = "i:o:r:q:n:b:c:t:p:s:SEM:x:R:d:T:If:P:C:F:u:JY:"
|
2017-05-09 15:44:46 +02:00
|
|
|
#ifdef USE_JPWL
|
|
|
|
"W:"
|
|
|
|
#endif /* USE_JPWL */
|
|
|
|
"h";
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
totlen = sizeof(long_option);
|
|
|
|
img_fol->set_out_format = 0;
|
2014-01-16 15:21:14 +01:00
|
|
|
raw_cp->rawWidth = 0;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
do {
|
|
|
|
c = opj_getopt_long(argc, argv, optlist, long_option, totlen);
|
|
|
|
if (c == -1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
break;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
switch (c) {
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'i': { /* input file */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *infile = opj_optarg;
|
|
|
|
parameters->decod_format = get_file_format(infile);
|
2017-05-09 15:44:46 +02:00
|
|
|
switch (parameters->decod_format) {
|
2014-01-16 15:21:14 +01:00
|
|
|
case PGX_DFMT:
|
|
|
|
case PXM_DFMT:
|
|
|
|
case BMP_DFMT:
|
|
|
|
case TIF_DFMT:
|
|
|
|
case RAW_DFMT:
|
|
|
|
case RAWL_DFMT:
|
|
|
|
case TGA_DFMT:
|
|
|
|
case PNG_DFMT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr,
|
2014-04-22 23:22:49 +02:00
|
|
|
"[ERROR] Unknown input file format: %s \n"
|
|
|
|
" Known file formats are *.pnm, *.pgm, *.ppm, *.pgx, *png, *.bmp, *.tif, *.raw or *.tga\n",
|
2014-01-16 15:21:14 +01:00
|
|
|
infile);
|
|
|
|
return 1;
|
|
|
|
}
|
2015-09-25 22:04:58 +02:00
|
|
|
if (opj_strcpy_s(parameters->infile, sizeof(parameters->infile), infile) != 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'o': { /* output file */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *outfile = opj_optarg;
|
|
|
|
parameters->cod_format = get_file_format(outfile);
|
2017-05-09 15:44:46 +02:00
|
|
|
switch (parameters->cod_format) {
|
2014-01-16 15:21:14 +01:00
|
|
|
case J2K_CFMT:
|
|
|
|
case JP2_CFMT:
|
|
|
|
break;
|
|
|
|
default:
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"Unknown output format image %s [only *.j2k, *.j2c or *.jp2]!! \n", outfile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (opj_strcpy_s(parameters->outfile, sizeof(parameters->outfile),
|
|
|
|
outfile) != 0) {
|
2015-09-25 22:04:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
case 'O': { /* output format */
|
2014-01-16 15:21:14 +01:00
|
|
|
char outformat[50];
|
|
|
|
char *of = opj_optarg;
|
2017-05-09 15:44:46 +02:00
|
|
|
sprintf(outformat, ".%s", of);
|
2014-01-16 15:21:14 +01:00
|
|
|
img_fol->set_out_format = 1;
|
|
|
|
parameters->cod_format = get_file_format(outformat);
|
2017-05-09 15:44:46 +02:00
|
|
|
switch (parameters->cod_format) {
|
2014-01-16 15:21:14 +01:00
|
|
|
case J2K_CFMT:
|
|
|
|
case JP2_CFMT:
|
|
|
|
img_fol->out_format = opj_optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Unknown output format image [only j2k, j2c, jp2]!! \n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'r': { /* rates rates/distorsion */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *s = opj_optarg;
|
|
|
|
parameters->tcp_numlayers = 0;
|
2017-05-09 15:44:46 +02:00
|
|
|
while (sscanf(s, "%f", ¶meters->tcp_rates[parameters->tcp_numlayers]) ==
|
|
|
|
1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->tcp_numlayers++;
|
|
|
|
while (*s && *s != ',') {
|
|
|
|
s++;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!*s) {
|
2014-01-16 15:21:14 +01:00
|
|
|
break;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
|
|
|
}
|
|
|
|
parameters->cp_disto_alloc = 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'F': { /* Raw image format parameters */
|
2014-03-26 15:26:49 +01:00
|
|
|
OPJ_BOOL wrong = OPJ_FALSE;
|
|
|
|
char *substr1;
|
|
|
|
char *substr2;
|
|
|
|
char *sep;
|
2014-01-16 15:21:14 +01:00
|
|
|
char signo;
|
2017-05-09 15:44:46 +02:00
|
|
|
int width, height, bitdepth, ncomp;
|
2014-03-26 16:17:17 +01:00
|
|
|
OPJ_UINT32 len;
|
2015-07-26 13:41:59 +02:00
|
|
|
OPJ_BOOL raw_signed = OPJ_FALSE;
|
2017-05-09 15:44:46 +02:00
|
|
|
substr2 = strchr(opj_optarg, '@');
|
2014-03-26 15:26:49 +01:00
|
|
|
if (substr2 == NULL) {
|
2014-03-26 16:17:17 +01:00
|
|
|
len = (OPJ_UINT32) strlen(opj_optarg);
|
2014-03-26 15:26:49 +01:00
|
|
|
} else {
|
2017-05-09 15:44:46 +02:00
|
|
|
len = (OPJ_UINT32)(substr2 - opj_optarg);
|
2014-03-26 15:26:49 +01:00
|
|
|
substr2++; /* skip '@' character */
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
substr1 = (char*) malloc((len + 1) * sizeof(char));
|
2015-09-25 00:08:34 +02:00
|
|
|
if (substr1 == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
memcpy(substr1, opj_optarg, len);
|
2014-03-26 15:26:49 +01:00
|
|
|
substr1[len] = '\0';
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(substr1, "%d,%d,%d,%d,%c", &width, &height, &ncomp, &bitdepth,
|
|
|
|
&signo) == 5) {
|
2014-01-16 15:21:14 +01:00
|
|
|
if (signo == 's') {
|
2014-03-26 15:26:49 +01:00
|
|
|
raw_signed = OPJ_TRUE;
|
|
|
|
} else if (signo == 'u') {
|
|
|
|
raw_signed = OPJ_FALSE;
|
|
|
|
} else {
|
|
|
|
wrong = OPJ_TRUE;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2014-03-26 15:26:49 +01:00
|
|
|
} else {
|
|
|
|
wrong = OPJ_TRUE;
|
|
|
|
}
|
|
|
|
if (!wrong) {
|
2015-07-26 02:41:39 +02:00
|
|
|
int compno;
|
2014-03-26 15:26:49 +01:00
|
|
|
int lastdx = 1;
|
|
|
|
int lastdy = 1;
|
|
|
|
raw_cp->rawWidth = width;
|
|
|
|
raw_cp->rawHeight = height;
|
|
|
|
raw_cp->rawComp = ncomp;
|
|
|
|
raw_cp->rawBitDepth = bitdepth;
|
|
|
|
raw_cp->rawSigned = raw_signed;
|
2017-05-09 15:44:46 +02:00
|
|
|
raw_cp->rawComps = (raw_comp_cparameters_t*) malloc(((OPJ_UINT32)(
|
|
|
|
ncomp)) * sizeof(raw_comp_cparameters_t));
|
|
|
|
if (raw_cp->rawComps == NULL) {
|
|
|
|
free(substr1);
|
|
|
|
return 1;
|
|
|
|
}
|
2015-07-26 02:41:39 +02:00
|
|
|
for (compno = 0; compno < ncomp && !wrong; compno++) {
|
2014-03-26 15:26:49 +01:00
|
|
|
if (substr2 == NULL) {
|
2015-07-26 02:41:39 +02:00
|
|
|
raw_cp->rawComps[compno].dx = lastdx;
|
|
|
|
raw_cp->rawComps[compno].dy = lastdy;
|
2014-03-26 15:26:49 +01:00
|
|
|
} else {
|
2017-05-09 15:44:46 +02:00
|
|
|
int dx, dy;
|
|
|
|
sep = strchr(substr2, ':');
|
2014-03-26 15:26:49 +01:00
|
|
|
if (sep == NULL) {
|
|
|
|
if (sscanf(substr2, "%dx%d", &dx, &dy) == 2) {
|
|
|
|
lastdx = dx;
|
|
|
|
lastdy = dy;
|
2015-07-26 02:41:39 +02:00
|
|
|
raw_cp->rawComps[compno].dx = dx;
|
|
|
|
raw_cp->rawComps[compno].dy = dy;
|
2014-03-26 15:26:49 +01:00
|
|
|
substr2 = NULL;
|
|
|
|
} else {
|
|
|
|
wrong = OPJ_TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (sscanf(substr2, "%dx%d:%s", &dx, &dy, substr2) == 3) {
|
2015-07-26 02:41:39 +02:00
|
|
|
raw_cp->rawComps[compno].dx = dx;
|
|
|
|
raw_cp->rawComps[compno].dy = dy;
|
2014-03-26 15:26:49 +01:00
|
|
|
} else {
|
|
|
|
wrong = OPJ_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
}
|
2015-09-25 00:08:34 +02:00
|
|
|
free(substr1);
|
2014-03-26 15:26:49 +01:00
|
|
|
if (wrong) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "\nError: invalid raw image parameters\n");
|
|
|
|
fprintf(stderr, "Please use the Format option -F:\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
"-F <width>,<height>,<ncomp>,<bitdepth>,{s,u}@<dx1>x<dy1>:...:<dxn>x<dyn>\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
"If subsampling is omitted, 1x1 is assumed for all components\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
"Example: -i image.raw -o image.j2k -F 512,512,3,8,u@1x1:2x2:2x2\n");
|
|
|
|
fprintf(stderr, " for raw 512x512 image with 4:2:0 subsampling\n");
|
|
|
|
fprintf(stderr, "Aborting.\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'q': { /* add fixed_quality */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *s = opj_optarg;
|
2017-05-09 15:44:46 +02:00
|
|
|
while (sscanf(s, "%f", ¶meters->tcp_distoratio[parameters->tcp_numlayers])
|
|
|
|
== 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->tcp_numlayers++;
|
|
|
|
while (*s && *s != ',') {
|
|
|
|
s++;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!*s) {
|
2014-01-16 15:21:14 +01:00
|
|
|
break;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
|
|
|
}
|
|
|
|
parameters->cp_fixed_quality = 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* dda */
|
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'f': { /* mod fixed_quality (before : -q) */
|
2014-01-16 15:21:14 +01:00
|
|
|
int *row = NULL, *col = NULL;
|
2014-01-22 19:41:34 +01:00
|
|
|
OPJ_UINT32 numlayers = 0, numresolution = 0, matrix_width = 0;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
char *s = opj_optarg;
|
2015-05-29 00:16:49 +02:00
|
|
|
sscanf(s, "%u", &numlayers);
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (numlayers > 9) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2014-03-07 13:06:00 +01:00
|
|
|
parameters->tcp_numlayers = (int)numlayers;
|
|
|
|
numresolution = (OPJ_UINT32)parameters->numresolution;
|
2014-01-16 15:21:14 +01:00
|
|
|
matrix_width = numresolution * 3;
|
|
|
|
parameters->cp_matrice = (int *) malloc(numlayers * matrix_width * sizeof(int));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters->cp_matrice == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
s = s + 2;
|
|
|
|
|
|
|
|
for (i = 0; i < numlayers; i++) {
|
|
|
|
row = ¶meters->cp_matrice[i * matrix_width];
|
|
|
|
col = row;
|
|
|
|
parameters->tcp_rates[i] = 1;
|
|
|
|
sscanf(s, "%d,", &col[0]);
|
|
|
|
s += 2;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (col[0] > 9) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
col[1] = 0;
|
|
|
|
col[2] = 0;
|
|
|
|
for (j = 1; j < numresolution; j++) {
|
|
|
|
col += 3;
|
|
|
|
sscanf(s, "%d,%d,%d", &col[0], &col[1], &col[2]);
|
|
|
|
s += 6;
|
2017-05-09 15:44:46 +02:00
|
|
|
if (col[0] > 9) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
|
|
|
if (col[1] > 9) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
|
|
|
if (col[2] > 9) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (i < numlayers - 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
s++;
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
parameters->cp_fixed_alloc = 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 't': { /* tiles */
|
2014-01-16 15:21:14 +01:00
|
|
|
sscanf(opj_optarg, "%d,%d", ¶meters->cp_tdx, ¶meters->cp_tdy);
|
|
|
|
parameters->tile_size_on = OPJ_TRUE;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'n': { /* resolution */
|
2014-01-16 15:21:14 +01:00
|
|
|
sscanf(opj_optarg, "%d", ¶meters->numresolution);
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
case 'c': { /* precinct dimension */
|
2014-01-16 15:21:14 +01:00
|
|
|
char sep;
|
|
|
|
int res_spec = 0;
|
|
|
|
|
|
|
|
char *s = opj_optarg;
|
2014-02-27 11:02:46 +01:00
|
|
|
int ret;
|
2014-01-16 15:21:14 +01:00
|
|
|
do {
|
|
|
|
sep = 0;
|
2014-02-27 11:02:46 +01:00
|
|
|
ret = sscanf(s, "[%d,%d]%c", ¶meters->prcw_init[res_spec],
|
2017-05-09 15:44:46 +02:00
|
|
|
¶meters->prch_init[res_spec], &sep);
|
|
|
|
if (!(ret == 2 && sep == 0) && !(ret == 3 && sep == ',')) {
|
|
|
|
fprintf(stderr, "\nError: could not parse precinct dimension: '%s' %x\n", s,
|
|
|
|
sep);
|
|
|
|
fprintf(stderr, "Example: -i lena.raw -o lena.j2k -c [128,128],[128,128]\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->csty |= 0x01;
|
|
|
|
res_spec++;
|
|
|
|
s = strpbrk(s, "]") + 2;
|
2017-05-09 15:44:46 +02:00
|
|
|
} while (sep == ',');
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->res_spec = res_spec;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'b': { /* code-block dimension */
|
2014-01-16 15:21:14 +01:00
|
|
|
int cblockw_init = 0, cblockh_init = 0;
|
|
|
|
sscanf(opj_optarg, "%d,%d", &cblockw_init, &cblockh_init);
|
2017-08-21 23:21:39 +02:00
|
|
|
if (cblockw_init > 1024 || cblockw_init < 4 ||
|
|
|
|
cblockh_init > 1024 || cblockh_init < 4 ||
|
|
|
|
cblockw_init * cblockh_init > 4096) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"!! Size of code_block error (option -b) !!\n\nRestriction :\n"
|
|
|
|
" * width*height<=4096\n * 4<=width,height<= 1024\n\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->cblockw_init = cblockw_init;
|
|
|
|
parameters->cblockh_init = cblockh_init;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'x': { /* creation of index file */
|
2015-09-25 22:04:58 +02:00
|
|
|
if (opj_strcpy_s(indexfilename, indexfilename_size, opj_optarg) != 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
2014-04-23 17:19:57 +02:00
|
|
|
/* FIXME ADE INDEX >> */
|
|
|
|
fprintf(stderr,
|
|
|
|
"[WARNING] Index file generation is currently broken.\n"
|
|
|
|
" '-x' option ignored.\n");
|
|
|
|
/* << FIXME ADE INDEX */
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'p': { /* progression order */
|
2014-01-16 15:21:14 +01:00
|
|
|
char progression[4];
|
|
|
|
|
|
|
|
strncpy(progression, opj_optarg, 4);
|
|
|
|
parameters->prog_order = give_progression(progression);
|
|
|
|
if (parameters->prog_order == -1) {
|
|
|
|
fprintf(stderr, "Unrecognized progression order "
|
|
|
|
"[LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 's': { /* subsampling factor */
|
2014-01-16 15:21:14 +01:00
|
|
|
if (sscanf(opj_optarg, "%d,%d", ¶meters->subsampling_dx,
|
|
|
|
¶meters->subsampling_dy) != 2) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "'-s' sub-sampling argument error ! [-s dx,dy]\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'd': { /* coordonnate of the reference grid */
|
2014-01-16 15:21:14 +01:00
|
|
|
if (sscanf(opj_optarg, "%d,%d", ¶meters->image_offset_x0,
|
|
|
|
¶meters->image_offset_y0) != 2) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "-d 'coordonnate of the reference grid' argument "
|
2014-01-16 15:21:14 +01:00
|
|
|
"error !! [-d x0,y0]\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'h': /* display an help description */
|
2014-01-16 15:21:14 +01:00
|
|
|
encode_help_display();
|
|
|
|
return 1;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ----------------------------------------------------- */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'P': { /* POC */
|
|
|
|
int numpocs = 0; /* number of progression order change (POC) default 0 */
|
|
|
|
opj_poc_t *POC = NULL; /* POC : used in case of Progression order change */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
char *s = opj_optarg;
|
|
|
|
POC = parameters->POC;
|
|
|
|
|
2015-05-29 00:16:49 +02:00
|
|
|
while (sscanf(s, "T%u=%u,%u,%u,%u,%u,%4s", &POC[numpocs].tile,
|
2014-01-16 15:21:14 +01:00
|
|
|
&POC[numpocs].resno0, &POC[numpocs].compno0,
|
|
|
|
&POC[numpocs].layno1, &POC[numpocs].resno1,
|
|
|
|
&POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
|
|
|
|
POC[numpocs].prg1 = give_progression(POC[numpocs].progorder);
|
|
|
|
numpocs++;
|
|
|
|
while (*s && *s != '/') {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (!*s) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
}
|
2014-03-07 13:06:00 +01:00
|
|
|
parameters->numpocs = (OPJ_UINT32)numpocs;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'S': { /* SOP marker */
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->csty |= 0x02;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'E': { /* EPH marker */
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->csty |= 0x04;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'M': { /* Mode switch pas tous au point !! */
|
2014-01-16 15:21:14 +01:00
|
|
|
int value = 0;
|
|
|
|
if (sscanf(opj_optarg, "%d", &value) == 1) {
|
|
|
|
for (i = 0; i <= 5; i++) {
|
|
|
|
int cache = value & (1 << i);
|
2017-05-09 15:44:46 +02:00
|
|
|
if (cache) {
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->mode |= (1 << i);
|
2017-05-09 15:44:46 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'R': { /* ROI */
|
2014-01-16 15:21:14 +01:00
|
|
|
if (sscanf(opj_optarg, "c=%d,U=%d", ¶meters->roi_compno,
|
|
|
|
¶meters->roi_shift) != 2) {
|
|
|
|
fprintf(stderr, "ROI error !! [-ROI c='compno',U='shift']\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'T': { /* Tile offset */
|
|
|
|
if (sscanf(opj_optarg, "%d,%d", ¶meters->cp_tx0,
|
|
|
|
¶meters->cp_ty0) != 2) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'C': { /* add a comment */
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->cp_comment = (char*)malloc(strlen(opj_optarg) + 1);
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters->cp_comment) {
|
2014-01-16 15:21:14 +01:00
|
|
|
strcpy(parameters->cp_comment, opj_optarg);
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'I': { /* reversible or not */
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->irreversible = 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'u': { /* Tile part generation*/
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->tp_flag = opj_optarg[0];
|
|
|
|
parameters->tp_on = 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'z': { /* Image Directory path */
|
2014-01-16 15:21:14 +01:00
|
|
|
img_fol->imgdirpath = (char*)malloc(strlen(opj_optarg) + 1);
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol->imgdirpath == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
strcpy(img_fol->imgdirpath, opj_optarg);
|
|
|
|
img_fol->set_imgdir = 1;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'w': { /* Digital Cinema 2K profile compliance*/
|
|
|
|
int fps = 0;
|
|
|
|
sscanf(opj_optarg, "%d", &fps);
|
|
|
|
if (fps == 24) {
|
2014-04-17 11:31:37 +02:00
|
|
|
parameters->rsiz = OPJ_PROFILE_CINEMA_2K;
|
|
|
|
parameters->max_comp_size = OPJ_CINEMA_24_COMP;
|
|
|
|
parameters->max_cs_size = OPJ_CINEMA_24_CS;
|
2017-05-09 15:44:46 +02:00
|
|
|
} else if (fps == 48) {
|
2014-04-17 11:31:37 +02:00
|
|
|
parameters->rsiz = OPJ_PROFILE_CINEMA_2K;
|
|
|
|
parameters->max_comp_size = OPJ_CINEMA_48_COMP;
|
|
|
|
parameters->max_cs_size = OPJ_CINEMA_48_CS;
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Incorrect value!! must be 24 or 48\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "CINEMA 2K profile activated\n"
|
2016-09-26 11:26:55 +02:00
|
|
|
"Other options specified could be overridden\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'y': { /* Digital Cinema 4K profile compliance*/
|
2014-04-17 11:31:37 +02:00
|
|
|
parameters->rsiz = OPJ_PROFILE_CINEMA_4K;
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "CINEMA 4K profile activated\n"
|
2016-09-26 11:26:55 +02:00
|
|
|
"Other options specified could be overridden\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-03-25 13:38:29 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'Y': { /* Shall we do an MCT ? 0:no_mct;1:rgb->ycc;2:custom mct (-m option required)*/
|
|
|
|
int mct_mode = 0;
|
|
|
|
sscanf(opj_optarg, "%d", &mct_mode);
|
|
|
|
if (mct_mode < 0 || mct_mode > 2) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"MCT incorrect value!! Current accepted values are 0, 1 or 2.\n");
|
2014-03-25 13:38:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2014-03-25 14:29:11 +01:00
|
|
|
parameters->tcp_mct = (char) mct_mode;
|
2014-03-25 13:38:29 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-03-25 13:38:29 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-03-25 13:38:29 +01:00
|
|
|
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'm': { /* mct input file */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *lFilename = opj_optarg;
|
|
|
|
char *lMatrix;
|
|
|
|
char *lCurrentPtr ;
|
|
|
|
float *lCurrentDoublePtr;
|
|
|
|
float *lSpace;
|
|
|
|
int *l_int_ptr;
|
2014-03-10 09:25:08 +01:00
|
|
|
int lNbComp = 0, lTotalComp, lMctComp, i2;
|
2014-03-07 13:06:00 +01:00
|
|
|
size_t lStrLen, lStrFread;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* Open file */
|
2017-05-09 15:44:46 +02:00
|
|
|
FILE * lFile = fopen(lFilename, "r");
|
2014-01-16 15:21:14 +01:00
|
|
|
if (lFile == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set size of file and read its content*/
|
2017-05-09 15:44:46 +02:00
|
|
|
fseek(lFile, 0, SEEK_END);
|
2014-03-07 13:06:00 +01:00
|
|
|
lStrLen = (size_t)ftell(lFile);
|
2017-05-09 15:44:46 +02:00
|
|
|
fseek(lFile, 0, SEEK_SET);
|
2014-01-16 15:21:14 +01:00
|
|
|
lMatrix = (char *) malloc(lStrLen + 1);
|
2015-09-24 23:32:03 +02:00
|
|
|
if (lMatrix == NULL) {
|
|
|
|
fclose(lFile);
|
|
|
|
return 1;
|
|
|
|
}
|
2014-02-26 10:40:19 +01:00
|
|
|
lStrFread = fread(lMatrix, 1, lStrLen, lFile);
|
2014-01-16 15:21:14 +01:00
|
|
|
fclose(lFile);
|
2017-05-09 15:44:46 +02:00
|
|
|
if (lStrLen != lStrFread) {
|
2015-09-24 23:32:03 +02:00
|
|
|
free(lMatrix);
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
lMatrix[lStrLen] = 0;
|
|
|
|
lCurrentPtr = lMatrix;
|
|
|
|
|
|
|
|
/* replace ',' by 0 */
|
2017-05-09 15:44:46 +02:00
|
|
|
while (*lCurrentPtr != 0) {
|
2014-01-16 15:21:14 +01:00
|
|
|
if (*lCurrentPtr == ' ') {
|
|
|
|
*lCurrentPtr = 0;
|
|
|
|
++lNbComp;
|
|
|
|
}
|
|
|
|
++lCurrentPtr;
|
|
|
|
}
|
|
|
|
++lNbComp;
|
|
|
|
lCurrentPtr = lMatrix;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
lNbComp = (int)(sqrt(4 * lNbComp + 1) / 2. - 0.5);
|
2014-01-16 15:21:14 +01:00
|
|
|
lMctComp = lNbComp * lNbComp;
|
|
|
|
lTotalComp = lMctComp + lNbComp;
|
2014-03-07 13:06:00 +01:00
|
|
|
lSpace = (float *) malloc((size_t)lTotalComp * sizeof(float));
|
2017-05-09 15:44:46 +02:00
|
|
|
if (lSpace == NULL) {
|
2015-09-24 23:32:03 +02:00
|
|
|
free(lMatrix);
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
lCurrentDoublePtr = lSpace;
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i2 = 0; i2 < lMctComp; ++i2) {
|
2014-01-16 15:21:14 +01:00
|
|
|
lStrLen = strlen(lCurrentPtr) + 1;
|
|
|
|
*lCurrentDoublePtr++ = (float) atof(lCurrentPtr);
|
|
|
|
lCurrentPtr += lStrLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
l_int_ptr = (int*) lCurrentDoublePtr;
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i2 = 0; i2 < lNbComp; ++i2) {
|
2014-01-16 15:21:14 +01:00
|
|
|
lStrLen = strlen(lCurrentPtr) + 1;
|
|
|
|
*l_int_ptr++ = atoi(lCurrentPtr);
|
|
|
|
lCurrentPtr += lStrLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO should not be here ! */
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_set_MCT(parameters, lSpace, (int *)(lSpace + lMctComp),
|
|
|
|
(OPJ_UINT32)lNbComp);
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* Free memory*/
|
|
|
|
free(lSpace);
|
|
|
|
free(lMatrix);
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------ */
|
|
|
|
|
|
|
|
/* UniPG>> */
|
2006-12-04 15:55:11 +01:00
|
|
|
#ifdef USE_JPWL
|
2017-05-09 15:44:46 +02:00
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'W': { /* JPWL capabilities switched on */
|
2014-01-16 15:21:14 +01:00
|
|
|
char *token = NULL;
|
|
|
|
int hprot, pprot, sens, addr, size, range;
|
|
|
|
|
|
|
|
/* we need to enable indexing */
|
|
|
|
if (!indexfilename || !*indexfilename) {
|
2017-05-09 15:44:46 +02:00
|
|
|
if (opj_strcpy_s(indexfilename, indexfilename_size,
|
|
|
|
JPWL_PRIVATEINDEX_NAME) != 0) {
|
2015-09-25 22:04:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* search for different protection methods */
|
|
|
|
|
|
|
|
/* break the option in comma points and parse the result */
|
|
|
|
token = strtok(opj_optarg, ",");
|
2017-05-09 15:44:46 +02:00
|
|
|
while (token != NULL) {
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* search header error protection method */
|
|
|
|
if (*token == 'h') {
|
|
|
|
|
|
|
|
static int tile = 0, tilespec = 0, lasttileno = 0;
|
|
|
|
|
|
|
|
hprot = 1; /* predefined method */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(token, "h=%d", &hprot) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Main header, specified */
|
|
|
|
if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((hprot >= 37) && (hprot <= 128)))) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid main header protection method h = %d\n",
|
|
|
|
hprot);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_hprot_MH = hprot;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
} else if (sscanf(token, "h%d=%d", &tile, &hprot) == 2) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Tile part header, specified */
|
|
|
|
if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((hprot >= 37) && (hprot <= 128)))) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid tile part header protection method h = %d\n",
|
|
|
|
hprot);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method t = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tilespec < JPWL_MAX_NO_TILESPECS) {
|
|
|
|
parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
|
|
|
|
parameters->jpwl_hprot_TPH[tilespec++] = hprot;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
} else if (sscanf(token, "h%d", &tile) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Tile part header, unspecified */
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method t = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tilespec < JPWL_MAX_NO_TILESPECS) {
|
|
|
|
parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
|
|
|
|
parameters->jpwl_hprot_TPH[tilespec++] = hprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else if (!strcmp(token, "h")) {
|
|
|
|
/* Main header, unspecified */
|
|
|
|
parameters->jpwl_hprot_MH = hprot;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search packet error protection method */
|
|
|
|
if (*token == 'p') {
|
|
|
|
|
|
|
|
static int pack = 0, tile = 0, packspec = 0;
|
|
|
|
|
|
|
|
pprot = 1; /* predefined method */
|
|
|
|
|
|
|
|
if (sscanf(token, "p=%d", &pprot) == 1) {
|
|
|
|
/* Method for all tiles and all packets */
|
|
|
|
if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((pprot >= 37) && (pprot <= 128)))) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid default packet protection method p = %d\n",
|
|
|
|
pprot);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_pprot_tileno[0] = 0;
|
|
|
|
parameters->jpwl_pprot_packno[0] = 0;
|
|
|
|
parameters->jpwl_pprot[0] = pprot;
|
|
|
|
|
|
|
|
} else if (sscanf(token, "p%d=%d", &tile, &pprot) == 2) {
|
|
|
|
/* method specified from that tile on */
|
|
|
|
if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((pprot >= 37) && (pprot <= 128)))) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method p = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (packspec < JPWL_MAX_NO_PACKSPECS) {
|
|
|
|
parameters->jpwl_pprot_tileno[packspec] = tile;
|
|
|
|
parameters->jpwl_pprot_packno[packspec] = 0;
|
|
|
|
parameters->jpwl_pprot[packspec++] = pprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (sscanf(token, "p%d:%d=%d", &tile, &pack, &pprot) == 3) {
|
|
|
|
/* method fully specified from that tile and that packet on */
|
|
|
|
if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((pprot >= 37) && (pprot <= 128)))) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method p = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (pack < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n",
|
|
|
|
pack);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (packspec < JPWL_MAX_NO_PACKSPECS) {
|
|
|
|
parameters->jpwl_pprot_tileno[packspec] = tile;
|
|
|
|
parameters->jpwl_pprot_packno[packspec] = pack;
|
|
|
|
parameters->jpwl_pprot[packspec++] = pprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (sscanf(token, "p%d:%d", &tile, &pack) == 2) {
|
|
|
|
/* default method from that tile and that packet on */
|
|
|
|
if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
|
2017-05-09 15:44:46 +02:00
|
|
|
((pprot >= 37) && (pprot <= 128)))) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method p = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (pack < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n",
|
|
|
|
pack);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (packspec < JPWL_MAX_NO_PACKSPECS) {
|
|
|
|
parameters->jpwl_pprot_tileno[packspec] = tile;
|
|
|
|
parameters->jpwl_pprot_packno[packspec] = pack;
|
|
|
|
parameters->jpwl_pprot[packspec++] = pprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (sscanf(token, "p%d", &tile) == 1) {
|
|
|
|
/* default from a tile on */
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on protection method p = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (packspec < JPWL_MAX_NO_PACKSPECS) {
|
|
|
|
parameters->jpwl_pprot_tileno[packspec] = tile;
|
|
|
|
parameters->jpwl_pprot_packno[packspec] = 0;
|
|
|
|
parameters->jpwl_pprot[packspec++] = pprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else if (!strcmp(token, "p")) {
|
|
|
|
/* all default */
|
|
|
|
parameters->jpwl_pprot_tileno[0] = 0;
|
|
|
|
parameters->jpwl_pprot_packno[0] = 0;
|
|
|
|
parameters->jpwl_pprot[0] = pprot;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search sensitivity method */
|
|
|
|
if (*token == 's') {
|
|
|
|
|
|
|
|
static int tile = 0, tilespec = 0, lasttileno = 0;
|
|
|
|
|
|
|
|
sens = 0; /* predefined: relative error */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(token, "s=%d", &sens) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Main header, specified */
|
|
|
|
if ((sens < -1) || (sens > 7)) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "ERROR -> invalid main header sensitivity method s = %d\n",
|
|
|
|
sens);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_sens_MH = sens;
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
} else if (sscanf(token, "s%d=%d", &tile, &sens) == 2) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Tile part header, specified */
|
|
|
|
if ((sens < -1) || (sens > 7)) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "ERROR -> invalid tile part header sensitivity method s = %d\n",
|
|
|
|
sens);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tilespec < JPWL_MAX_NO_TILESPECS) {
|
|
|
|
parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
|
|
|
|
parameters->jpwl_sens_TPH[tilespec++] = sens;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
} else if (sscanf(token, "s%d", &tile) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Tile part header, unspecified */
|
|
|
|
if (tile < 0) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (tilespec < JPWL_MAX_NO_TILESPECS) {
|
|
|
|
parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
|
|
|
|
parameters->jpwl_sens_TPH[tilespec++] = hprot;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (!strcmp(token, "s")) {
|
|
|
|
/* Main header, unspecified */
|
|
|
|
parameters->jpwl_sens_MH = sens;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid sensitivity method selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
parameters->jpwl_sens_size = 2; /* 2 bytes for default size */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search addressing size */
|
|
|
|
if (*token == 'a') {
|
|
|
|
|
|
|
|
|
|
|
|
addr = 0; /* predefined: auto */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(token, "a=%d", &addr) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Specified */
|
|
|
|
if ((addr != 0) && (addr != 2) && (addr != 4)) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid addressing size a = %d\n", addr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_sens_addr = addr;
|
|
|
|
|
|
|
|
} else if (!strcmp(token, "a")) {
|
|
|
|
/* default */
|
|
|
|
parameters->jpwl_sens_addr = addr; /* auto for default size */
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid addressing selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search sensitivity size */
|
|
|
|
if (*token == 'z') {
|
|
|
|
|
|
|
|
|
|
|
|
size = 1; /* predefined: 1 byte */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(token, "z=%d", &size) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Specified */
|
|
|
|
if ((size != 0) && (size != 1) && (size != 2)) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid sensitivity size z = %d\n", size);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_sens_size = size;
|
2006-12-04 15:55:11 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
} else if (!strcmp(token, "a")) {
|
|
|
|
/* default */
|
|
|
|
parameters->jpwl_sens_size = size; /* 1 for default size */
|
2010-03-26 16:46:17 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid size selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2006-12-04 15:55:11 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/* search range method */
|
|
|
|
if (*token == 'g') {
|
|
|
|
|
|
|
|
|
|
|
|
range = 0; /* predefined: 0 (packet) */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (sscanf(token, "g=%d", &range) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Specified */
|
|
|
|
if ((range < 0) || (range > 3)) {
|
|
|
|
fprintf(stderr, "ERROR -> invalid sensitivity range method g = %d\n", range);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
parameters->jpwl_sens_range = range;
|
|
|
|
|
|
|
|
} else if (!strcmp(token, "g")) {
|
|
|
|
/* default */
|
|
|
|
parameters->jpwl_sens_range = range;
|
2006-12-04 15:55:11 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "ERROR -> invalid range selection = %s\n", token);
|
|
|
|
return 1;
|
|
|
|
};
|
2006-12-04 15:55:11 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2006-12-04 15:55:11 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/* next token or bust */
|
|
|
|
token = strtok(NULL, ",");
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* some info */
|
|
|
|
fprintf(stdout, "Info: JPWL capabilities enabled\n");
|
|
|
|
parameters->jpwl_epc_on = OPJ_TRUE;
|
|
|
|
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
2007-01-31 16:19:54 +01:00
|
|
|
#endif /* USE_JPWL */
|
2017-05-09 15:44:46 +02:00
|
|
|
/* <<UniPG */
|
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
case 'J': { /* jpip on */
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->jpip_on = OPJ_TRUE;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
break;
|
|
|
|
/* ------------------------------------------------------ */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
default:
|
2014-04-22 23:22:49 +02:00
|
|
|
fprintf(stderr, "[WARNING] An invalid option has been ignored\n");
|
|
|
|
break;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
} while (c != -1);
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol->set_imgdir == 1) {
|
|
|
|
if (!(parameters->infile[0] == 0)) {
|
2014-04-22 23:22:49 +02:00
|
|
|
fprintf(stderr, "[ERROR] options -ImgDir and -i cannot be used together !!\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol->set_out_format == 0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"[ERROR] When -ImgDir is used, -OutFor <FORMAT> must be used !!\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "Only one format allowed! Valid formats are j2k and jp2!!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (!((parameters->outfile[0] == 0))) {
|
2014-04-22 23:22:49 +02:00
|
|
|
fprintf(stderr, "[ERROR] options -ImgDir and -o cannot be used together !!\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "Specify OutputFormat using -OutFor<FORMAT> !!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
|
|
|
if ((parameters->infile[0] == 0) || (parameters->outfile[0] == 0)) {
|
2014-04-22 23:22:49 +02:00
|
|
|
fprintf(stderr, "[ERROR] Required parameters are missing\n"
|
2017-05-09 15:44:46 +02:00
|
|
|
"Example: %s -i image.pgm -o image.j2k\n", argv[0]);
|
|
|
|
fprintf(stderr, " Help: %s -h\n", argv[0]);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((parameters->decod_format == RAW_DFMT && raw_cp->rawWidth == 0)
|
|
|
|
|| (parameters->decod_format == RAWL_DFMT && raw_cp->rawWidth == 0)) {
|
|
|
|
fprintf(stderr, "[ERROR] invalid raw image parameters\n");
|
|
|
|
fprintf(stderr, "Please use the Format option -F:\n");
|
|
|
|
fprintf(stderr,
|
|
|
|
"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
|
|
|
|
fprintf(stderr, "Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
|
|
|
|
fprintf(stderr, "Aborting\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((parameters->cp_disto_alloc || parameters->cp_fixed_alloc ||
|
|
|
|
parameters->cp_fixed_quality)
|
|
|
|
&& (!(parameters->cp_disto_alloc ^ parameters->cp_fixed_alloc ^
|
|
|
|
parameters->cp_fixed_quality))) {
|
2014-04-22 23:22:49 +02:00
|
|
|
fprintf(stderr, "[ERROR] options -r -q and -f cannot be used together !!\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
2017-05-09 15:44:46 +02:00
|
|
|
} /* mod fixed_quality */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-08-10 14:43:16 +02:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/* if no rate entered, lossless by default */
|
2017-08-10 14:43:16 +02:00
|
|
|
/* Note: post v2.2.0, this is no longer necessary, but for released */
|
|
|
|
/* versions at the time of writing, this is needed to avoid crashes */
|
2014-01-16 15:21:14 +01:00
|
|
|
if (parameters->tcp_numlayers == 0) {
|
2017-08-10 14:43:16 +02:00
|
|
|
parameters->tcp_rates[0] = 0;
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters->tcp_numlayers++;
|
|
|
|
parameters->cp_disto_alloc = 1;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((parameters->cp_tx0 > parameters->image_offset_x0) ||
|
|
|
|
(parameters->cp_ty0 > parameters->image_offset_y0)) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr,
|
2014-04-22 23:22:49 +02:00
|
|
|
"[ERROR] Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
|
2017-05-09 15:44:46 +02:00
|
|
|
parameters->cp_tx0, parameters->image_offset_x0, parameters->cp_ty0,
|
|
|
|
parameters->image_offset_y0);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < parameters->numpocs; i++) {
|
|
|
|
if (parameters->POC[i].prg == -1) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
|
|
|
|
i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 11:15:13 +02:00
|
|
|
/* If subsampled image is provided, automatically disable MCT */
|
2017-05-09 15:44:46 +02:00
|
|
|
if (((parameters->decod_format == RAW_DFMT) ||
|
|
|
|
(parameters->decod_format == RAWL_DFMT))
|
|
|
|
&& (((raw_cp->rawComp > 1) && ((raw_cp->rawComps[1].dx > 1) ||
|
|
|
|
(raw_cp->rawComps[1].dy > 1)))
|
|
|
|
|| ((raw_cp->rawComp > 2) && ((raw_cp->rawComps[2].dx > 1) ||
|
|
|
|
(raw_cp->rawComps[2].dy > 1)))
|
|
|
|
)) {
|
2014-07-03 11:15:13 +02:00
|
|
|
parameters->tcp_mct = 0;
|
|
|
|
}
|
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
2016-04-29 23:49:17 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
}
|
2004-04-29 15:10:05 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/* -------------------------------------------------------------------------- */
|
2004-08-03 16:06:10 +02:00
|
|
|
|
2012-05-02 09:01:13 +02:00
|
|
|
/**
|
|
|
|
sample error debug callback expecting no client object
|
|
|
|
*/
|
2017-05-09 15:44:46 +02:00
|
|
|
static void error_callback(const char *msg, void *client_data)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
(void)client_data;
|
|
|
|
fprintf(stdout, "[ERROR] %s", msg);
|
2012-05-02 09:01:13 +02:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
sample warning debug callback expecting no client object
|
|
|
|
*/
|
2017-05-09 15:44:46 +02:00
|
|
|
static void warning_callback(const char *msg, void *client_data)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
(void)client_data;
|
|
|
|
fprintf(stdout, "[WARNING] %s", msg);
|
2012-05-02 09:01:13 +02:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
sample debug callback expecting no client object
|
|
|
|
*/
|
2017-05-09 15:44:46 +02:00
|
|
|
static void info_callback(const char *msg, void *client_data)
|
|
|
|
{
|
2014-01-16 15:21:14 +01:00
|
|
|
(void)client_data;
|
|
|
|
fprintf(stdout, "[INFO] %s", msg);
|
2012-05-02 09:01:13 +02:00
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
OPJ_FLOAT64 opj_clock(void)
|
|
|
|
{
|
2015-06-16 02:16:32 +02:00
|
|
|
#ifdef _WIN32
|
2017-05-09 15:44:46 +02:00
|
|
|
/* _WIN32: use QueryPerformance (very accurate) */
|
|
|
|
LARGE_INTEGER freq, t ;
|
2015-06-16 02:16:32 +02:00
|
|
|
/* freq is the clock speed of the CPU */
|
|
|
|
QueryPerformanceFrequency(&freq) ;
|
2017-05-09 15:44:46 +02:00
|
|
|
/* cout << "freq = " << ((double) freq.QuadPart) << endl; */
|
2015-06-16 02:16:32 +02:00
|
|
|
/* t is the high resolution performance counter (see MSDN) */
|
2017-05-09 15:44:46 +02:00
|
|
|
QueryPerformanceCounter(& t) ;
|
2017-06-21 13:20:35 +02:00
|
|
|
return freq.QuadPart ? ((OPJ_FLOAT64) t.QuadPart / (OPJ_FLOAT64) freq.QuadPart)
|
|
|
|
: 0 ;
|
2015-06-16 02:16:32 +02:00
|
|
|
#else
|
2017-05-09 15:44:46 +02:00
|
|
|
/* Unix or Linux: use resource usage */
|
2015-06-16 02:16:32 +02:00
|
|
|
struct rusage t;
|
|
|
|
OPJ_FLOAT64 procTime;
|
|
|
|
/* (1) Get the rusage data structure at this moment (man getrusage) */
|
2017-05-09 15:44:46 +02:00
|
|
|
getrusage(0, &t);
|
2015-06-16 02:16:32 +02:00
|
|
|
/* (2) What is the elapsed time ? - CPU time = User time + System time */
|
2017-05-09 15:44:46 +02:00
|
|
|
/* (2a) Get the seconds */
|
2015-06-16 02:16:32 +02:00
|
|
|
procTime = (OPJ_FLOAT64)(t.ru_utime.tv_sec + t.ru_stime.tv_sec);
|
|
|
|
/* (2b) More precisely! Get the microseconds part ! */
|
2017-05-09 15:44:46 +02:00
|
|
|
return (procTime + (OPJ_FLOAT64)(t.ru_utime.tv_usec + t.ru_stime.tv_usec) *
|
|
|
|
1e-6) ;
|
2015-06-16 02:16:32 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/* -------------------------------------------------------------------------- */
|
2012-03-15 11:23:20 +01:00
|
|
|
/**
|
2012-10-15 17:47:56 +02:00
|
|
|
* OPJ_COMPRESS MAIN
|
2012-03-15 11:23:20 +01:00
|
|
|
*/
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2017-05-09 15:44:46 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2012-03-15 11:23:20 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_cparameters_t parameters; /* compression parameters */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
opj_stream_t *l_stream = 00;
|
|
|
|
opj_codec_t* l_codec = 00;
|
|
|
|
opj_image_t *image = NULL;
|
|
|
|
raw_cparameters_t raw_cp;
|
2015-07-24 23:55:45 +02:00
|
|
|
OPJ_SIZE_T num_compressed_files = 0;
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
char indexfilename[OPJ_PATH_LEN]; /* index file name */
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
unsigned int i, num_images, imageno;
|
|
|
|
img_fol_t img_fol;
|
|
|
|
dircnt_t *dirptr = NULL;
|
|
|
|
|
|
|
|
OPJ_BOOL bSuccess;
|
|
|
|
OPJ_BOOL bUseTiles = OPJ_FALSE; /* OPJ_TRUE */
|
|
|
|
OPJ_UINT32 l_nb_tiles = 4;
|
2015-07-24 23:55:45 +02:00
|
|
|
OPJ_FLOAT64 t = opj_clock();
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* set encoding parameters to default values */
|
|
|
|
opj_set_default_encoder_parameters(¶meters);
|
|
|
|
|
|
|
|
/* Initialize indexfilename and img_fol */
|
|
|
|
*indexfilename = 0;
|
2017-05-09 15:44:46 +02:00
|
|
|
memset(&img_fol, 0, sizeof(img_fol_t));
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2014-04-02 18:25:40 +02:00
|
|
|
/* raw_cp initialization */
|
|
|
|
raw_cp.rawBitDepth = 0;
|
|
|
|
raw_cp.rawComp = 0;
|
|
|
|
raw_cp.rawComps = 0;
|
|
|
|
raw_cp.rawHeight = 0;
|
|
|
|
raw_cp.rawSigned = 0;
|
|
|
|
raw_cp.rawWidth = 0;
|
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/* parse input and get user encoding parameters */
|
2017-05-09 15:44:46 +02:00
|
|
|
parameters.tcp_mct = (char)
|
|
|
|
255; /* This will be set later according to the input image or the provided option */
|
|
|
|
if (parse_cmdline_encoder(argc, argv, ¶meters, &img_fol, &raw_cp,
|
|
|
|
indexfilename, sizeof(indexfilename)) == 1) {
|
2016-04-29 23:49:17 +02:00
|
|
|
goto fails;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Read directory if necessary */
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol.set_imgdir == 1) {
|
|
|
|
num_images = get_num_images(img_fol.imgdirpath);
|
|
|
|
dirptr = (dircnt_t*)malloc(sizeof(dircnt_t));
|
|
|
|
if (dirptr) {
|
|
|
|
dirptr->filename_buf = (char*)malloc(num_images * OPJ_PATH_LEN * sizeof(
|
|
|
|
char)); /* Stores at max 10 image file names*/
|
|
|
|
dirptr->filename = (char**) malloc(num_images * sizeof(char*));
|
|
|
|
if (!dirptr->filename_buf) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
for (i = 0; i < num_images; i++) {
|
|
|
|
dirptr->filename[i] = dirptr->filename_buf + i * OPJ_PATH_LEN;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (load_images(dirptr, img_fol.imgdirpath) == 1) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (num_images == 0) {
|
|
|
|
fprintf(stdout, "Folder is empty\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
|
|
|
num_images = 1;
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
|
|
|
/*Encoding image one by one*/
|
2017-05-09 15:44:46 +02:00
|
|
|
for (imageno = 0; imageno < num_images; imageno++) {
|
2014-01-16 15:21:14 +01:00
|
|
|
image = NULL;
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (img_fol.set_imgdir == 1) {
|
|
|
|
if (get_next_file((int)imageno, dirptr, &img_fol, ¶meters)) {
|
|
|
|
fprintf(stderr, "skipping file...\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
switch (parameters.decod_format) {
|
2014-01-16 15:21:14 +01:00
|
|
|
case PGX_DFMT:
|
|
|
|
break;
|
|
|
|
case PXM_DFMT:
|
|
|
|
break;
|
|
|
|
case BMP_DFMT:
|
|
|
|
break;
|
|
|
|
case TIF_DFMT:
|
|
|
|
break;
|
|
|
|
case RAW_DFMT:
|
|
|
|
case RAWL_DFMT:
|
|
|
|
break;
|
|
|
|
case TGA_DFMT:
|
|
|
|
break;
|
|
|
|
case PNG_DFMT:
|
|
|
|
break;
|
|
|
|
default:
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stderr, "skipping file...\n");
|
2014-01-16 15:21:14 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decode the source image */
|
|
|
|
/* ----------------------- */
|
|
|
|
|
|
|
|
switch (parameters.decod_format) {
|
|
|
|
case PGX_DFMT:
|
|
|
|
image = pgxtoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load pgx file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PXM_DFMT:
|
|
|
|
image = pnmtoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load pnm file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BMP_DFMT:
|
|
|
|
image = bmptoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load bmp file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2012-03-15 11:23:20 +01:00
|
|
|
|
2013-03-03 18:55:35 +01:00
|
|
|
#ifdef OPJ_HAVE_LIBTIFF
|
2014-01-16 15:21:14 +01:00
|
|
|
case TIF_DFMT:
|
|
|
|
image = tiftoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load tiff file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2013-03-03 18:55:35 +01:00
|
|
|
#endif /* OPJ_HAVE_LIBTIFF */
|
2007-08-20 17:20:42 +02:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
case RAW_DFMT:
|
|
|
|
image = rawtoimage(parameters.infile, ¶meters, &raw_cp);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load raw file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAWL_DFMT:
|
|
|
|
image = rawltoimage(parameters.infile, ¶meters, &raw_cp);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load raw file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TGA_DFMT:
|
|
|
|
image = tgatoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load tga file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2012-03-15 11:23:20 +01:00
|
|
|
|
2013-03-03 18:55:35 +01:00
|
|
|
#ifdef OPJ_HAVE_LIBPNG
|
2014-01-16 15:21:14 +01:00
|
|
|
case PNG_DFMT:
|
|
|
|
image = pngtoimage(parameters.infile, ¶meters);
|
|
|
|
if (!image) {
|
|
|
|
fprintf(stderr, "Unable to load png file\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2013-03-03 18:55:35 +01:00
|
|
|
#endif /* OPJ_HAVE_LIBPNG */
|
2014-01-16 15:21:14 +01:00
|
|
|
}
|
2012-03-15 11:23:20 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Can happen if input file is TIFF or PNG
|
2017-05-09 15:44:46 +02:00
|
|
|
* and OPJ_HAVE_LIBTIF or OPJ_HAVE_LIBPNG is undefined
|
|
|
|
*/
|
|
|
|
if (!image) {
|
2014-01-16 15:21:14 +01:00
|
|
|
fprintf(stderr, "Unable to load file: got no image\n");
|
|
|
|
return 1;
|
2012-05-29 11:30:03 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* Decide if MCT should be used */
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters.tcp_mct == (char)
|
|
|
|
255) { /* mct mode has not been set in commandline */
|
2014-03-25 16:35:33 +01:00
|
|
|
parameters.tcp_mct = (image->numcomps >= 3) ? 1 : 0;
|
2014-03-25 13:38:29 +01:00
|
|
|
} else { /* mct mode has been set in commandline */
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((parameters.tcp_mct == 1) && (image->numcomps < 3)) {
|
2014-03-25 13:38:29 +01:00
|
|
|
fprintf(stderr, "RGB->YCC conversion cannot be used:\n");
|
|
|
|
fprintf(stderr, "Input image has less than 3 components\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if ((parameters.tcp_mct == 2) && (!parameters.mct_data)) {
|
2014-03-25 13:38:29 +01:00
|
|
|
fprintf(stderr, "Custom MCT has been set but no array-based MCT\n");
|
|
|
|
fprintf(stderr, "has been provided. Aborting.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* encode the destination image */
|
|
|
|
/* ---------------------------- */
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
switch (parameters.cod_format) {
|
|
|
|
case J2K_CFMT: { /* JPEG-2000 codestream */
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Get a decoder handle */
|
|
|
|
l_codec = opj_create_compress(OPJ_CODEC_J2K);
|
|
|
|
break;
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
case JP2_CFMT: { /* JPEG 2000 compressed image data */
|
2014-01-16 15:21:14 +01:00
|
|
|
/* Get a decoder handle */
|
|
|
|
l_codec = opj_create_compress(OPJ_CODEC_JP2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "skipping file..\n");
|
2014-04-23 09:46:11 +02:00
|
|
|
opj_stream_destroy(l_stream);
|
2014-01-16 15:21:14 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* catch events using our callbacks and give a local context */
|
2017-05-09 15:44:46 +02:00
|
|
|
opj_set_info_handler(l_codec, info_callback, 00);
|
|
|
|
opj_set_warning_handler(l_codec, warning_callback, 00);
|
|
|
|
opj_set_error_handler(l_codec, error_callback, 00);
|
2014-01-16 15:21:14 +01:00
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
if (bUseTiles) {
|
2014-01-16 15:21:14 +01:00
|
|
|
parameters.cp_tx0 = 0;
|
|
|
|
parameters.cp_ty0 = 0;
|
|
|
|
parameters.tile_size_on = OPJ_TRUE;
|
|
|
|
parameters.cp_tdx = 512;
|
|
|
|
parameters.cp_tdy = 512;
|
|
|
|
}
|
2015-05-29 23:58:08 +02:00
|
|
|
if (! opj_setup_encoder(l_codec, ¶meters, image)) {
|
|
|
|
fprintf(stderr, "failed to encode image: opj_setup_encoder\n");
|
|
|
|
opj_destroy_codec(l_codec);
|
|
|
|
opj_image_destroy(image);
|
|
|
|
return 1;
|
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* open a byte stream for writing and allocate memory for all tiles */
|
2017-05-09 15:44:46 +02:00
|
|
|
l_stream = opj_stream_create_default_file_stream(parameters.outfile, OPJ_FALSE);
|
|
|
|
if (! l_stream) {
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* encode the image */
|
2017-05-09 15:44:46 +02:00
|
|
|
bSuccess = opj_start_compress(l_codec, image, l_stream);
|
2014-01-16 15:21:14 +01:00
|
|
|
if (!bSuccess) {
|
|
|
|
fprintf(stderr, "failed to encode image: opj_start_compress\n");
|
|
|
|
}
|
2017-05-09 15:44:46 +02:00
|
|
|
if (bSuccess && bUseTiles) {
|
2014-01-16 15:21:14 +01:00
|
|
|
OPJ_BYTE *l_data;
|
2017-05-09 15:44:46 +02:00
|
|
|
OPJ_UINT32 l_data_size = 512 * 512 * 3;
|
|
|
|
l_data = (OPJ_BYTE*) calloc(1, l_data_size);
|
|
|
|
if (l_data == NULL) {
|
|
|
|
goto fails;
|
|
|
|
}
|
|
|
|
for (i = 0; i < l_nb_tiles; ++i) {
|
|
|
|
if (! opj_write_tile(l_codec, i, l_data, l_data_size, l_stream)) {
|
|
|
|
fprintf(stderr, "ERROR -> test_tile_encoder: failed to write the tile %d!\n",
|
|
|
|
i);
|
2014-04-23 09:46:11 +02:00
|
|
|
opj_stream_destroy(l_stream);
|
2014-01-16 15:21:14 +01:00
|
|
|
opj_destroy_codec(l_codec);
|
|
|
|
opj_image_destroy(image);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(l_data);
|
2017-05-09 15:44:46 +02:00
|
|
|
} else {
|
2014-01-16 15:21:14 +01:00
|
|
|
bSuccess = bSuccess && opj_encode(l_codec, l_stream);
|
|
|
|
if (!bSuccess) {
|
|
|
|
fprintf(stderr, "failed to encode image: opj_encode\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bSuccess = bSuccess && opj_end_compress(l_codec, l_stream);
|
|
|
|
if (!bSuccess) {
|
|
|
|
fprintf(stderr, "failed to encode image: opj_end_compress\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bSuccess) {
|
2014-04-23 09:46:11 +02:00
|
|
|
opj_stream_destroy(l_stream);
|
2014-01-16 15:21:14 +01:00
|
|
|
opj_destroy_codec(l_codec);
|
|
|
|
opj_image_destroy(image);
|
|
|
|
fprintf(stderr, "failed to encode image\n");
|
2017-05-09 15:44:46 +02:00
|
|
|
remove(parameters.outfile);
|
2014-01-16 15:21:14 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-09 15:44:46 +02:00
|
|
|
num_compressed_files++;
|
|
|
|
fprintf(stdout, "[INFO] Generated outfile %s\n", parameters.outfile);
|
2014-01-16 15:21:14 +01:00
|
|
|
/* close and free the byte stream */
|
2014-04-23 09:46:11 +02:00
|
|
|
opj_stream_destroy(l_stream);
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* free remaining compression structures */
|
|
|
|
opj_destroy_codec(l_codec);
|
|
|
|
|
|
|
|
/* free image data */
|
|
|
|
opj_image_destroy(image);
|
|
|
|
|
2012-05-29 11:30:03 +02:00
|
|
|
}
|
2014-01-16 15:21:14 +01:00
|
|
|
|
|
|
|
/* free user parameters structure */
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters.cp_comment) {
|
|
|
|
free(parameters.cp_comment);
|
|
|
|
}
|
|
|
|
if (parameters.cp_matrice) {
|
|
|
|
free(parameters.cp_matrice);
|
|
|
|
}
|
|
|
|
if (raw_cp.rawComps) {
|
|
|
|
free(raw_cp.rawComps);
|
|
|
|
}
|
|
|
|
|
2015-07-24 23:55:45 +02:00
|
|
|
t = opj_clock() - t;
|
|
|
|
if (num_compressed_files) {
|
2017-05-09 15:44:46 +02:00
|
|
|
fprintf(stdout, "encode time: %d ms \n",
|
|
|
|
(int)((t * 1000.0) / (OPJ_FLOAT64)num_compressed_files));
|
2015-07-24 23:55:45 +02:00
|
|
|
}
|
2005-12-08 10:27:26 +01:00
|
|
|
|
2014-01-16 15:21:14 +01:00
|
|
|
return 0;
|
2016-04-29 23:49:17 +02:00
|
|
|
|
|
|
|
fails:
|
2017-05-09 15:44:46 +02:00
|
|
|
if (parameters.cp_comment) {
|
|
|
|
free(parameters.cp_comment);
|
|
|
|
}
|
|
|
|
if (parameters.cp_matrice) {
|
|
|
|
free(parameters.cp_matrice);
|
|
|
|
}
|
|
|
|
if (raw_cp.rawComps) {
|
|
|
|
free(raw_cp.rawComps);
|
|
|
|
}
|
|
|
|
if (img_fol.imgdirpath) {
|
|
|
|
free(img_fol.imgdirpath);
|
|
|
|
}
|
|
|
|
if (dirptr) {
|
|
|
|
if (dirptr->filename_buf) {
|
|
|
|
free(dirptr->filename_buf);
|
|
|
|
}
|
|
|
|
if (dirptr->filename) {
|
|
|
|
free(dirptr->filename);
|
|
|
|
}
|
|
|
|
free(dirptr);
|
|
|
|
}
|
|
|
|
return 1;
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|