Bug fixed in lossless mode
This commit is contained in:
parent
2c2730280e
commit
26a630dad2
|
@ -38,7 +38,8 @@
|
||||||
#endif
|
#endif
|
||||||
#include "convert.h"
|
#include "convert.h"
|
||||||
|
|
||||||
void help_display()
|
void
|
||||||
|
help_display ()
|
||||||
{
|
{
|
||||||
printf ("HELP\n----\n\n");
|
printf ("HELP\n----\n\n");
|
||||||
printf ("- the option -help displays the readme.txt file on screen\n\n");
|
printf ("- the option -help displays the readme.txt file on screen\n\n");
|
||||||
|
@ -87,7 +88,8 @@ void help_display()
|
||||||
printf
|
printf
|
||||||
("-i : source file (-i source.pnm also *.pgm, *.ppm) required\n");
|
("-i : source file (-i source.pnm also *.pgm, *.ppm) required\n");
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf("-o : destination file (-o dest.j2k or .jp2) required\n");
|
printf
|
||||||
|
("-o : destination file (-o dest.j2k or .jp2) required\n");
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf ("-help : Display the help information optional\n ");
|
printf ("-help : Display the help information optional\n ");
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
|
@ -104,11 +106,9 @@ void help_display()
|
||||||
printf
|
printf
|
||||||
("-p : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] optional\n");
|
("-p : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] optional\n");
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf
|
printf ("-s : subsampling factor (-s 2,2) [-s X,Y] optional\n");
|
||||||
("-s : subsampling factor (-s 2,2) [-s X,Y] optional\n");
|
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf
|
printf ("-SOP : write SOP marker before each packet optional\n");
|
||||||
("-SOP : write SOP marker before each packet optional\n");
|
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
printf
|
printf
|
||||||
("-EPH : write EPH marker after each header packet optional\n");
|
("-EPH : write EPH marker after each header packet optional\n");
|
||||||
|
@ -162,28 +162,44 @@ void help_display()
|
||||||
printf ("Tpacket_M '' '' '' '' '' '' ''\n");
|
printf ("Tpacket_M '' '' '' '' '' '' ''\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int give_progression(char progression[4])
|
int
|
||||||
|
give_progression (char progression[4])
|
||||||
{
|
{
|
||||||
if (progression[0] == 'L' && progression[1] == 'R'
|
if (progression[0] == 'L' && progression[1] == 'R'
|
||||||
&& progression[2] == 'C' && progression[3] == 'P') {
|
&& progression[2] == 'C' && progression[3] == 'P')
|
||||||
|
{
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (progression[0] == 'R' && progression[1] == 'L'
|
if (progression[0] == 'R' && progression[1] == 'L'
|
||||||
&& progression[2] == 'C' && progression[3] == 'P') {
|
&& progression[2] == 'C' && progression[3] == 'P')
|
||||||
|
{
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (progression[0] == 'R' && progression[1] == 'P'
|
if (progression[0] == 'R' && progression[1] == 'P'
|
||||||
&& progression[2] == 'C' && progression[3] == 'L') {
|
&& progression[2] == 'C' && progression[3] == 'L')
|
||||||
|
{
|
||||||
return 2;
|
return 2;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (progression[0] == 'P' && progression[1] == 'C'
|
if (progression[0] == 'P' && progression[1] == 'C'
|
||||||
&& progression[2] == 'R' && progression[3] == 'L') {
|
&& progression[2] == 'R' && progression[3] == 'L')
|
||||||
|
{
|
||||||
return 3;
|
return 3;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (progression[0] == 'C' && progression[1] == 'P'
|
if (progression[0] == 'C' && progression[1] == 'P'
|
||||||
&& progression[2] == 'R' && progression[3] == 'L') {
|
&& progression[2] == 'R' && progression[3] == 'L')
|
||||||
|
{
|
||||||
return 4;
|
return 4;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -199,16 +215,19 @@ double dwt_norms_97[4][10] = {
|
||||||
{2.080, 3.865, 8.307, 17.18, 34.71, 69.59, 139.3, 278.6, 557.2}
|
{2.080, 3.865, 8.307, 17.18, 34.71, 69.59, 139.3, 278.6, 557.2}
|
||||||
};
|
};
|
||||||
|
|
||||||
int floorlog2(int a)
|
int
|
||||||
|
floorlog2 (int a)
|
||||||
{
|
{
|
||||||
int l;
|
int l;
|
||||||
for (l = 0; a > 1; l++) {
|
for (l = 0; a > 1; l++)
|
||||||
|
{
|
||||||
a >>= 1;
|
a >>= 1;
|
||||||
}
|
}
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
void encode_stepsize(int stepsize, int numbps, int *expn, int *mant)
|
void
|
||||||
|
encode_stepsize (int stepsize, int numbps, int *expn, int *mant)
|
||||||
{
|
{
|
||||||
int p, n;
|
int p, n;
|
||||||
p = floorlog2 (stepsize) - 13;
|
p = floorlog2 (stepsize) - 13;
|
||||||
|
@ -217,11 +236,13 @@ void encode_stepsize(int stepsize, int numbps, int *expn, int *mant)
|
||||||
*expn = numbps - p;
|
*expn = numbps - p;
|
||||||
}
|
}
|
||||||
|
|
||||||
void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
|
void
|
||||||
|
calc_explicit_stepsizes (j2k_tccp_t * tccp, int prec)
|
||||||
{
|
{
|
||||||
int numbands, bandno;
|
int numbands, bandno;
|
||||||
numbands = 3 * tccp->numresolutions - 2;
|
numbands = 3 * tccp->numresolutions - 2;
|
||||||
for (bandno = 0; bandno < numbands; bandno++) {
|
for (bandno = 0; bandno < numbands; bandno++)
|
||||||
|
{
|
||||||
double stepsize;
|
double stepsize;
|
||||||
|
|
||||||
int resno, level, orient, gain;
|
int resno, level, orient, gain;
|
||||||
|
@ -232,9 +253,12 @@ void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
|
||||||
tccp->qmfbid == 0 ? 0 : (orient ==
|
tccp->qmfbid == 0 ? 0 : (orient ==
|
||||||
0 ? 0 : (orient == 1
|
0 ? 0 : (orient == 1
|
||||||
|| orient == 2 ? 1 : 2));
|
|| orient == 2 ? 1 : 2));
|
||||||
if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
|
if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT)
|
||||||
|
{
|
||||||
stepsize = 1.0;
|
stepsize = 1.0;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
double norm = dwt_norms_97[orient][level];
|
double norm = dwt_norms_97[orient][level];
|
||||||
stepsize = (1 << (gain + 1)) / norm;
|
stepsize = (1 << (gain + 1)) / norm;
|
||||||
}
|
}
|
||||||
|
@ -244,7 +268,8 @@ void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
int NumResolution, numD_min; /* NumResolution : number of resolution */
|
int NumResolution, numD_min; /* NumResolution : number of resolution */
|
||||||
|
@ -313,16 +338,19 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
cp.intermed_file = 1;
|
cp.intermed_file = 1;
|
||||||
|
|
||||||
while (1) {
|
while (1)
|
||||||
|
{
|
||||||
int c = getopt (argc, argv,
|
int c = getopt (argc, argv,
|
||||||
"i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
|
"i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
switch (c) {
|
switch (c)
|
||||||
|
{
|
||||||
case 'i': /* IN fill */
|
case 'i': /* IN fill */
|
||||||
infile = optarg;
|
infile = optarg;
|
||||||
s = optarg;
|
s = optarg;
|
||||||
while (*s) {
|
while (*s)
|
||||||
|
{
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
s--;
|
s--;
|
||||||
|
@ -333,7 +361,8 @@ int main(int argc, char **argv)
|
||||||
S1 = *s;
|
S1 = *s;
|
||||||
|
|
||||||
if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
|
if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
|
||||||
|| (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
|
|| (S1 == 'P' && S2 == 'G' && S3 == 'X'))
|
||||||
|
{
|
||||||
cp.image_type = 0;
|
cp.image_type = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -345,13 +374,15 @@ int main(int argc, char **argv)
|
||||||
&& S3 == 'M')
|
&& S3 == 'M')
|
||||||
|| (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
|
|| (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
|
||||||
&& S2 == 'p'
|
&& S2 == 'p'
|
||||||
&& S3 == 'm')) {
|
&& S3 == 'm'))
|
||||||
|
{
|
||||||
cp.image_type = 1;
|
cp.image_type = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
|
if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
|
||||||
|| (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
|
|| (S1 == 'B' && S2 == 'M' && S3 == 'P'))
|
||||||
|
{
|
||||||
cp.image_type = 2;
|
cp.image_type = 2;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -363,7 +394,8 @@ int main(int argc, char **argv)
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'o': /* OUT fill */
|
case 'o': /* OUT fill */
|
||||||
outfile = optarg;
|
outfile = optarg;
|
||||||
while (*outfile) {
|
while (*outfile)
|
||||||
|
{
|
||||||
outfile++;
|
outfile++;
|
||||||
}
|
}
|
||||||
outfile--;
|
outfile--;
|
||||||
|
@ -375,12 +407,17 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
outfile = optarg;
|
outfile = optarg;
|
||||||
|
|
||||||
if ((S1 == 'j' && S2 == '2' && S3 == 'k') || (S1 == 'J' && S2 == '2' && S3 == 'K'))
|
if ((S1 == 'j' && S2 == '2' && S3 == 'k')
|
||||||
|
|| (S1 == 'J' && S2 == '2' && S3 == 'K'))
|
||||||
cp.JPEG2000_format = 0;
|
cp.JPEG2000_format = 0;
|
||||||
else if ((S1 == 'j' && S2 == 'p' && S3 == '2') || (S1 == 'J' && S2 == 'P' && S3 == '2'))
|
else if ((S1 == 'j' && S2 == 'p' && S3 == '2')
|
||||||
|
|| (S1 == 'J' && S2 == 'P' && S3 == '2'))
|
||||||
cp.JPEG2000_format = 1;
|
cp.JPEG2000_format = 1;
|
||||||
else {
|
else
|
||||||
fprintf(stderr,"Unknown output format image *.%c%c%c [only *.j2k, *.jp2]!! \n",S1,S2,S3);
|
{
|
||||||
|
fprintf (stderr,
|
||||||
|
"Unknown output format image *.%c%c%c [only *.j2k, *.jp2]!! \n",
|
||||||
|
S1, S2, S3);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -390,10 +427,11 @@ int main(int argc, char **argv)
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'r': /* rates rates/distorsion */
|
case 'r': /* rates rates/distorsion */
|
||||||
s = optarg;
|
s = optarg;
|
||||||
while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers])
|
while (sscanf (s, "%d", &tcp_init->rates[tcp_init->numlayers]) == 1)
|
||||||
== 1) {
|
{
|
||||||
tcp_init->numlayers++;
|
tcp_init->numlayers++;
|
||||||
while (*s && *s != ',') {
|
while (*s && *s != ',')
|
||||||
|
{
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
if (!*s)
|
if (!*s)
|
||||||
|
@ -406,10 +444,12 @@ int main(int argc, char **argv)
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'q': /* add fixed_quality */
|
case 'q': /* add fixed_quality */
|
||||||
s = optarg;
|
s = optarg;
|
||||||
while (sscanf(s, "%f", &tcp_init->distoratio[tcp_init->numlayers]) ==
|
while (sscanf (s, "%f", &tcp_init->distoratio[tcp_init->numlayers])
|
||||||
1) {
|
== 1)
|
||||||
|
{
|
||||||
tcp_init->numlayers++;
|
tcp_init->numlayers++;
|
||||||
while (*s && *s != ',') {
|
while (*s && *s != ',')
|
||||||
|
{
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
if (!*s)
|
if (!*s)
|
||||||
|
@ -431,7 +471,8 @@ int main(int argc, char **argv)
|
||||||
(int *) malloc (tcp_init->numlayers * NumResolution * 3 *
|
(int *) malloc (tcp_init->numlayers * NumResolution * 3 *
|
||||||
sizeof (int));
|
sizeof (int));
|
||||||
s = s + 2;
|
s = s + 2;
|
||||||
for (i = 0; i < tcp_init->numlayers; i++) {
|
for (i = 0; i < tcp_init->numlayers; i++)
|
||||||
|
{
|
||||||
tcp_init->rates[i] = 1;
|
tcp_init->rates[i] = 1;
|
||||||
sscanf (s, "%d,", &cp.matrice[i * NumResolution * 3]);
|
sscanf (s, "%d,", &cp.matrice[i * NumResolution * 3]);
|
||||||
s += 2;
|
s += 2;
|
||||||
|
@ -439,7 +480,8 @@ int main(int argc, char **argv)
|
||||||
s++;
|
s++;
|
||||||
cp.matrice[i * NumResolution * 3 + 1] = 0;
|
cp.matrice[i * NumResolution * 3 + 1] = 0;
|
||||||
cp.matrice[i * NumResolution * 3 + 2] = 0;
|
cp.matrice[i * NumResolution * 3 + 2] = 0;
|
||||||
for (j = 1; j < NumResolution; j++) {
|
for (j = 1; j < NumResolution; j++)
|
||||||
|
{
|
||||||
sscanf (s, "%d,%d,%d",
|
sscanf (s, "%d,%d,%d",
|
||||||
&cp.matrice[i * NumResolution * 3 + j * 3 + 0],
|
&cp.matrice[i * NumResolution * 3 + j * 3 + 0],
|
||||||
&cp.matrice[i * NumResolution * 3 + j * 3 + 1],
|
&cp.matrice[i * NumResolution * 3 + j * 3 + 1],
|
||||||
|
@ -469,20 +511,23 @@ int main(int argc, char **argv)
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'c': /* precinct dimension */
|
case 'c': /* precinct dimension */
|
||||||
s = optarg;
|
s = optarg;
|
||||||
do {
|
do
|
||||||
|
{
|
||||||
sep = 0;
|
sep = 0;
|
||||||
sscanf (s, "[%d,%d]%c", &prcw_init[res_spec],
|
sscanf (s, "[%d,%d]%c", &prcw_init[res_spec],
|
||||||
&prch_init[res_spec], &sep);
|
&prch_init[res_spec], &sep);
|
||||||
CSty |= 0x01;
|
CSty |= 0x01;
|
||||||
res_spec++;
|
res_spec++;
|
||||||
s = strpbrk (s, "]") + 2;
|
s = strpbrk (s, "]") + 2;
|
||||||
} while (sep == ',');
|
}
|
||||||
|
while (sep == ',');
|
||||||
break;
|
break;
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'b': /* code-block dimension */
|
case 'b': /* code-block dimension */
|
||||||
sscanf (optarg, "%d,%d", &cblockw_init, &cblockh_init);
|
sscanf (optarg, "%d,%d", &cblockw_init, &cblockh_init);
|
||||||
if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
|
if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
|
||||||
|| cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
|
|| cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4)
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"!! Size of code_block error (option -b) !!\n\nRestriction :\n * width*height<=4096\n * 4<=width,height<= 1024\n\n");
|
"!! Size of code_block error (option -b) !!\n\nRestriction :\n * width*height<=4096\n * 4<=width,height<= 1024\n\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -496,13 +541,15 @@ int main(int argc, char **argv)
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'p': /* progression order */
|
case 'p': /* progression order */
|
||||||
s = optarg;
|
s = optarg;
|
||||||
for (i = 0; i < 4; i++) {
|
for (i = 0; i < 4; i++)
|
||||||
|
{
|
||||||
progression[i] = *s;
|
progression[i] = *s;
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
Prog_order = give_progression (progression);
|
Prog_order = give_progression (progression);
|
||||||
|
|
||||||
if (Prog_order == -1) {
|
if (Prog_order == -1)
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
|
"Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -510,8 +557,8 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 's': /* subsampling factor */
|
case 's': /* subsampling factor */
|
||||||
if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy)
|
if (sscanf (optarg, "%d,%d", &subsampling_dx, &subsampling_dy) != 2)
|
||||||
!= 2) {
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"'-s' sub-sampling argument error ! [-s dx,dy]\n");
|
"'-s' sub-sampling argument error ! [-s dx,dy]\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -519,7 +566,8 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
/* ----------------------------------------------------- */
|
/* ----------------------------------------------------- */
|
||||||
case 'd': /* coordonnate of the reference grid */
|
case 'd': /* coordonnate of the reference grid */
|
||||||
if (sscanf(optarg, "%d,%d", &Dim[0], &Dim[1]) != 2) {
|
if (sscanf (optarg, "%d,%d", &Dim[0], &Dim[1]) != 2)
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
|
"-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -540,11 +588,13 @@ int main(int argc, char **argv)
|
||||||
while (sscanf (s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
|
while (sscanf (s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
|
||||||
&POC[numpocs].resno0, &POC[numpocs].compno0,
|
&POC[numpocs].resno0, &POC[numpocs].compno0,
|
||||||
&POC[numpocs].layno1, &POC[numpocs].resno1,
|
&POC[numpocs].layno1, &POC[numpocs].resno1,
|
||||||
&POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
|
&POC[numpocs].compno1, POC[numpocs].progorder) == 7)
|
||||||
|
{
|
||||||
POC[numpocs].prg = give_progression (POC[numpocs].progorder);
|
POC[numpocs].prg = give_progression (POC[numpocs].progorder);
|
||||||
/* POC[numpocs].tile; */
|
/* POC[numpocs].tile; */
|
||||||
numpocs++;
|
numpocs++;
|
||||||
while (*s && *s != '/') {
|
while (*s && *s != '/')
|
||||||
|
{
|
||||||
s++;
|
s++;
|
||||||
}
|
}
|
||||||
if (!*s)
|
if (!*s)
|
||||||
|
@ -562,8 +612,10 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
/* ------------------------------------------------------ */
|
/* ------------------------------------------------------ */
|
||||||
case 'M': /* Mode switch pas tous au point !! */
|
case 'M': /* Mode switch pas tous au point !! */
|
||||||
if (sscanf(optarg, "%d", &value) == 1) {
|
if (sscanf (optarg, "%d", &value) == 1)
|
||||||
for (i = 0; i <= 5; i++) {
|
{
|
||||||
|
for (i = 0; i <= 5; i++)
|
||||||
|
{
|
||||||
int cache = value & (1 << i);
|
int cache = value & (1 << i);
|
||||||
if (cache)
|
if (cache)
|
||||||
mode |= (1 << i);
|
mode |= (1 << i);
|
||||||
|
@ -572,15 +624,18 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
/* ------------------------------------------------------ */
|
/* ------------------------------------------------------ */
|
||||||
case 'R': /* ROI */
|
case 'R': /* ROI */
|
||||||
if (sscanf(optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2) {
|
if (sscanf (optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2)
|
||||||
|
{
|
||||||
fprintf (stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
|
fprintf (stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
/* ------------------------------------------------------ */
|
/* ------------------------------------------------------ */
|
||||||
case 'T': /* Tile offset */
|
case 'T': /* Tile offset */
|
||||||
if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
|
if (sscanf (optarg, "%d,%d", &TX0, &TY0) != 2)
|
||||||
fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
|
{
|
||||||
|
fprintf (stderr,
|
||||||
|
"-T 'tile offset' argument error !! [-T X0,Y0]");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -603,52 +658,64 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
/* Error messages */
|
/* Error messages */
|
||||||
/* -------------- */
|
/* -------------- */
|
||||||
if (!infile || !outfile) {
|
if (!infile || !outfile)
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
|
"usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((cp.disto_alloc || cp.fixed_alloc || cp.fixed_quality)&&(!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality))) {
|
if ((cp.disto_alloc || cp.fixed_alloc || cp.fixed_quality)
|
||||||
|
&& (!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality)))
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Error: options -r -q and -f can not be used together !!\n");
|
"Error: options -r -q and -f can not be used together !!\n");
|
||||||
return 1;
|
return 1;
|
||||||
} // mod fixed_quality
|
} // mod fixed_quality
|
||||||
|
|
||||||
/* if no rate entered, lossless by default */
|
/* if no rate entered, lossless by default */
|
||||||
if (tcp_init->numlayers == 0) {
|
if (tcp_init->numlayers == 0)
|
||||||
tcp_init->rates[tcp_init->numlayers] = 1;
|
{
|
||||||
|
tcp_init->rates[tcp_init->numlayers] = 0; //MOD antonin : losslessbug
|
||||||
tcp_init->numlayers++;
|
tcp_init->numlayers++;
|
||||||
cp.disto_alloc = 1;
|
cp.disto_alloc = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (TX0 > Dim[0] || TY0 > Dim[1]) {
|
if (TX0 > Dim[0] || TY0 > Dim[1])
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
|
"Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
|
||||||
TX0, Dim[0], TY0, Dim[1]);
|
TX0, Dim[0], TY0, Dim[1]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < numpocs; i++) {
|
for (i = 0; i < numpocs; i++)
|
||||||
if (POC[i].prg == -1) {
|
{
|
||||||
|
if (POC[i].prg == -1)
|
||||||
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
|
"Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
|
||||||
i + 1);
|
i + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (cp.image_type) {
|
switch (cp.image_type)
|
||||||
|
{
|
||||||
case 0:
|
case 0:
|
||||||
if (Tile_arg) {
|
if (Tile_arg)
|
||||||
|
{
|
||||||
if (!pgxtoimage
|
if (!pgxtoimage
|
||||||
(infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim,
|
(infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim, cp))
|
||||||
cp)) {
|
{
|
||||||
fprintf (stderr, "not a pgx file\n");
|
fprintf (stderr, "not a pgx file\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (!pgxtoimage
|
if (!pgxtoimage
|
||||||
(infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp)) {
|
(infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp))
|
||||||
|
{
|
||||||
fprintf (stderr, " not a pgx file\n");
|
fprintf (stderr, " not a pgx file\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -656,14 +723,16 @@ int main(int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
if (!pnmtoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
|
if (!pnmtoimage (infile, &img, subsampling_dx, subsampling_dy, Dim))
|
||||||
|
{
|
||||||
fprintf (stderr, " not a pnm file\n");
|
fprintf (stderr, " not a pnm file\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
if (!bmptoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
|
if (!bmptoimage (infile, &img, subsampling_dx, subsampling_dy, Dim))
|
||||||
|
{
|
||||||
fprintf (stderr, " not a bmp file\n");
|
fprintf (stderr, " not a bmp file\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -681,10 +750,13 @@ int main(int argc, char **argv)
|
||||||
NumResolution=numD_min+1;
|
NumResolution=numD_min+1;
|
||||||
} */
|
} */
|
||||||
|
|
||||||
if (Tile_arg == 1) {
|
if (Tile_arg == 1)
|
||||||
|
{
|
||||||
cp.tw = int_ceildiv (img.x1 - cp.tx0, cp.tdx);
|
cp.tw = int_ceildiv (img.x1 - cp.tx0, cp.tdx);
|
||||||
cp.th = int_ceildiv (img.y1 - cp.ty0, cp.tdy);
|
cp.th = int_ceildiv (img.y1 - cp.ty0, cp.tdy);
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
cp.tdx = img.x1 - cp.tx0;
|
cp.tdx = img.x1 - cp.tx0;
|
||||||
cp.tdy = img.y1 - cp.ty0;
|
cp.tdy = img.y1 - cp.ty0;
|
||||||
}
|
}
|
||||||
|
@ -699,10 +771,12 @@ int main(int argc, char **argv)
|
||||||
/* ---------------------- */
|
/* ---------------------- */
|
||||||
cp.tcps = (j2k_tcp_t *) malloc (cp.tw * cp.th * sizeof (j2k_tcp_t));
|
cp.tcps = (j2k_tcp_t *) malloc (cp.tw * cp.th * sizeof (j2k_tcp_t));
|
||||||
|
|
||||||
for (tileno = 0; tileno < cp.tw * cp.th; tileno++) {
|
for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
|
||||||
|
{
|
||||||
tcp = &cp.tcps[tileno];
|
tcp = &cp.tcps[tileno];
|
||||||
tcp->numlayers = tcp_init->numlayers;
|
tcp->numlayers = tcp_init->numlayers;
|
||||||
for (j = 0; j < tcp->numlayers; j++) {
|
for (j = 0; j < tcp->numlayers; j++)
|
||||||
|
{
|
||||||
if (cp.fixed_quality) // add fixed_quality
|
if (cp.fixed_quality) // add fixed_quality
|
||||||
tcp->distoratio[j] = tcp_init->distoratio[j];
|
tcp->distoratio[j] = tcp_init->distoratio[j];
|
||||||
else
|
else
|
||||||
|
@ -717,11 +791,14 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
numpocs_tile = 0;
|
numpocs_tile = 0;
|
||||||
tcp->POC = 0;
|
tcp->POC = 0;
|
||||||
if (numpocs) {
|
if (numpocs)
|
||||||
|
{
|
||||||
/* intialisation of POC */
|
/* intialisation of POC */
|
||||||
tcp->POC = 1;
|
tcp->POC = 1;
|
||||||
for (i = 0; i < numpocs; i++) {
|
for (i = 0; i < numpocs; i++)
|
||||||
if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
|
{
|
||||||
|
if (tileno == POC[i].tile - 1 || POC[i].tile == -1)
|
||||||
|
{
|
||||||
tcp_poc = &tcp->pocs[numpocs_tile];
|
tcp_poc = &tcp->pocs[numpocs_tile];
|
||||||
tcp_poc->resno0 = POC[numpocs_tile].resno0;
|
tcp_poc->resno0 = POC[numpocs_tile].resno0;
|
||||||
tcp_poc->compno0 = POC[numpocs_tile].compno0;
|
tcp_poc->compno0 = POC[numpocs_tile].compno0;
|
||||||
|
@ -737,7 +814,8 @@ int main(int argc, char **argv)
|
||||||
tcp->numpocs = numpocs_tile;
|
tcp->numpocs = numpocs_tile;
|
||||||
tcp->tccps = (j2k_tccp_t *) malloc (img.numcomps * sizeof (j2k_tccp_t));
|
tcp->tccps = (j2k_tccp_t *) malloc (img.numcomps * sizeof (j2k_tccp_t));
|
||||||
|
|
||||||
for (i = 0; i < img.numcomps; i++) {
|
for (i = 0; i < img.numcomps; i++)
|
||||||
|
{
|
||||||
tccp = &tcp->tccps[i];
|
tccp = &tcp->tccps[i];
|
||||||
tccp->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct */
|
tccp->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct */
|
||||||
tccp->numresolutions = NumResolution;
|
tccp->numresolutions = NumResolution;
|
||||||
|
@ -751,10 +829,13 @@ int main(int argc, char **argv)
|
||||||
tccp->roishift = ROI_shift;
|
tccp->roishift = ROI_shift;
|
||||||
else
|
else
|
||||||
tccp->roishift = 0;
|
tccp->roishift = 0;
|
||||||
if (CSty & J2K_CCP_CSTY_PRT) {
|
if (CSty & J2K_CCP_CSTY_PRT)
|
||||||
|
{
|
||||||
int p = 0;
|
int p = 0;
|
||||||
for (j = tccp->numresolutions - 1; j >= 0; j--) {
|
for (j = tccp->numresolutions - 1; j >= 0; j--)
|
||||||
if (p < res_spec) {
|
{
|
||||||
|
if (p < res_spec)
|
||||||
|
{
|
||||||
if (prcw_init[p] < 1)
|
if (prcw_init[p] < 1)
|
||||||
tccp->prcw[j] = 1;
|
tccp->prcw[j] = 1;
|
||||||
else
|
else
|
||||||
|
@ -764,10 +845,14 @@ int main(int argc, char **argv)
|
||||||
tccp->prch[j] = 1;
|
tccp->prch[j] = 1;
|
||||||
else
|
else
|
||||||
tccp->prch[j] = int_floorlog2 (prch_init[p]);
|
tccp->prch[j] = int_floorlog2 (prch_init[p]);
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
int size_prcw, size_prch;
|
int size_prcw, size_prch;
|
||||||
size_prcw = prcw_init[res_spec - 1] >> (p - (res_spec - 1));
|
size_prcw =
|
||||||
size_prch = prch_init[res_spec - 1] >> (p - (res_spec - 1));
|
prcw_init[res_spec - 1] >> (p - (res_spec - 1));
|
||||||
|
size_prch =
|
||||||
|
prch_init[res_spec - 1] >> (p - (res_spec - 1));
|
||||||
if (size_prcw < 1)
|
if (size_prcw < 1)
|
||||||
tccp->prcw[j] = 1;
|
tccp->prcw[j] = 1;
|
||||||
else
|
else
|
||||||
|
@ -781,8 +866,11 @@ int main(int argc, char **argv)
|
||||||
/*printf("\nsize precinct pour level %d : %d,%d\n", j,
|
/*printf("\nsize precinct pour level %d : %d,%d\n", j,
|
||||||
tccp->prcw[j], tccp->prch[j]); */
|
tccp->prcw[j], tccp->prch[j]); */
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
for (j = 0; j < tccp->numresolutions; j++) {
|
else
|
||||||
|
{
|
||||||
|
for (j = 0; j < tccp->numresolutions; j++)
|
||||||
|
{
|
||||||
tccp->prcw[j] = 15;
|
tccp->prcw[j] = 15;
|
||||||
tccp->prch[j] = 15;
|
tccp->prch[j] = 15;
|
||||||
}
|
}
|
||||||
|
@ -791,25 +879,35 @@ int main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cp.JPEG2000_format==0) { /* J2K format output */
|
|
||||||
if (cp.intermed_file==1) { /* After the encoding of each tile, j2k_encode
|
|
||||||
|
if (cp.JPEG2000_format == 0)
|
||||||
|
{ /* J2K format output */
|
||||||
|
if (cp.intermed_file == 1)
|
||||||
|
{ /* After the encoding of each tile, j2k_encode
|
||||||
stores the data in the file */
|
stores the data in the file */
|
||||||
len = j2k_encode (&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
|
len = j2k_encode (&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
|
||||||
if (len == 0) {
|
if (len == 0)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to encode image\n");
|
fprintf (stderr, "failed to encode image\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
|
{
|
||||||
outbuf = (char *) malloc (cp.tdx * cp.tdy * cp.tw * cp.th * 2); /* Allocate memory for all tiles */
|
outbuf = (char *) malloc (cp.tdx * cp.tdy * cp.tw * cp.th * 2); /* Allocate memory for all tiles */
|
||||||
cio_init (outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
cio_init (outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
||||||
len = j2k_encode(&img, &cp, outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
|
len =
|
||||||
if (len == 0) {
|
j2k_encode (&img, &cp, outbuf,
|
||||||
|
cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
|
||||||
|
if (len == 0)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to encode image\n");
|
fprintf (stderr, "failed to encode image\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
f = fopen (outfile, "wb");
|
f = fopen (outfile, "wb");
|
||||||
if (!f) {
|
if (!f)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to open %s for writing\n", outfile);
|
fprintf (stderr, "failed to open %s for writing\n", outfile);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -832,19 +930,22 @@ int main(int argc, char **argv)
|
||||||
return 1;
|
return 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
if (cp.intermed_file==1) {
|
if (cp.intermed_file == 1)
|
||||||
|
{
|
||||||
/*For the moment, JP2 format does not use intermediary files for each tile */
|
/*For the moment, JP2 format does not use intermediary files for each tile */
|
||||||
cp.intermed_file = 0;
|
cp.intermed_file = 0;
|
||||||
}
|
}
|
||||||
outbuf = (char *) malloc (cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
outbuf = (char *) malloc (cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
||||||
cio_init (outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
cio_init (outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
|
||||||
len = jp2_encode (jp2_struct, &cp, outbuf, index);
|
len = jp2_encode (jp2_struct, &cp, outbuf, index);
|
||||||
if (len == 0) {
|
if (len == 0)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to encode image\n");
|
fprintf (stderr, "failed to encode image\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
f = fopen (outfile, "wb");
|
f = fopen (outfile, "wb");
|
||||||
if (!f) {
|
if (!f)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to open %s for writing\n", outfile);
|
fprintf (stderr, "failed to open %s for writing\n", outfile);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -855,20 +956,27 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
/* Remove the temporary files */
|
/* Remove the temporary files */
|
||||||
/* -------------------------- */
|
/* -------------------------- */
|
||||||
if (cp.image_type) { /* PNM PGM PPM */
|
if (cp.image_type)
|
||||||
for (i = 0; i < img.numcomps; i++) {
|
{ /* PNM PGM PPM */
|
||||||
|
for (i = 0; i < img.numcomps; i++)
|
||||||
|
{
|
||||||
char tmp;
|
char tmp;
|
||||||
sprintf (&tmp, "Compo%d", i);
|
sprintf (&tmp, "Compo%d", i);
|
||||||
if (remove(&tmp) == -1) {
|
if (remove (&tmp) == -1)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to kill %s file !\n", &tmp);
|
fprintf (stderr, "failed to kill %s file !\n", &tmp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else { /* PGX */
|
}
|
||||||
for (i = 0; i < cp.th; i++) {
|
else
|
||||||
|
{ /* PGX */
|
||||||
|
for (i = 0; i < cp.th; i++)
|
||||||
|
{
|
||||||
char tmp;
|
char tmp;
|
||||||
sprintf (&tmp, "bandtile%d", i + 1);
|
sprintf (&tmp, "bandtile%d", i + 1);
|
||||||
|
|
||||||
if (remove(&tmp) == -1) {
|
if (remove (&tmp) == -1)
|
||||||
|
{
|
||||||
fprintf (stderr, "failed to kill %s file !\n", &tmp);
|
fprintf (stderr, "failed to kill %s file !\n", &tmp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -877,7 +985,8 @@ int main(int argc, char **argv)
|
||||||
/* Free memory */
|
/* Free memory */
|
||||||
free (img.comps);
|
free (img.comps);
|
||||||
free (cp_init.tcps);
|
free (cp_init.tcps);
|
||||||
if (tcp_init->numlayers > 9) free(cp.matrice);
|
if (tcp_init->numlayers > 9)
|
||||||
|
free (cp.matrice);
|
||||||
for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
|
for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
|
||||||
free (cp.tcps[tileno].tccps);
|
free (cp.tcps[tileno].tccps);
|
||||||
free (cp.tcps);
|
free (cp.tcps);
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue