Better indentation

This commit is contained in:
Antonin Descampe 2004-08-03 14:14:44 +00:00
parent 26a630dad2
commit d116ca5d10
3 changed files with 2821 additions and 3350 deletions

View File

@ -38,8 +38,7 @@
#endif
#include "convert.h"
void
help_display ()
void help_display()
{
printf("HELP\n----\n\n");
printf("- the option -help displays the readme.txt file on screen\n\n");
@ -106,9 +105,11 @@ help_display ()
printf
("-p : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] optional\n");
printf("\n");
printf ("-s : subsampling factor (-s 2,2) [-s X,Y] optional\n");
printf
("-s : subsampling factor (-s 2,2) [-s X,Y] optional\n");
printf("\n");
printf ("-SOP : write SOP marker before each packet optional\n");
printf
("-SOP : write SOP marker before each packet optional\n");
printf("\n");
printf
("-EPH : write EPH marker after each header packet optional\n");
@ -162,44 +163,28 @@ help_display ()
printf("Tpacket_M '' '' '' '' '' '' ''\n");
}
int
give_progression (char progression[4])
int give_progression(char progression[4])
{
if (progression[0] == 'L' && progression[1] == 'R'
&& progression[2] == 'C' && progression[3] == 'P')
{
&& progression[2] == 'C' && progression[3] == 'P') {
return 0;
}
else
{
} else {
if (progression[0] == 'R' && progression[1] == 'L'
&& progression[2] == 'C' && progression[3] == 'P')
{
&& progression[2] == 'C' && progression[3] == 'P') {
return 1;
}
else
{
} else {
if (progression[0] == 'R' && progression[1] == 'P'
&& progression[2] == 'C' && progression[3] == 'L')
{
&& progression[2] == 'C' && progression[3] == 'L') {
return 2;
}
else
{
} else {
if (progression[0] == 'P' && progression[1] == 'C'
&& progression[2] == 'R' && progression[3] == 'L')
{
&& progression[2] == 'R' && progression[3] == 'L') {
return 3;
}
else
{
} else {
if (progression[0] == 'C' && progression[1] == 'P'
&& progression[2] == 'R' && progression[3] == 'L')
{
&& progression[2] == 'R' && progression[3] == 'L') {
return 4;
}
else
{
} else {
return -1;
}
}
@ -215,19 +200,16 @@ double dwt_norms_97[4][10] = {
{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;
for (l = 0; a > 1; l++)
{
for (l = 0; a > 1; l++) {
a >>= 1;
}
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;
p = floorlog2(stepsize) - 13;
@ -236,13 +218,11 @@ encode_stepsize (int stepsize, int numbps, int *expn, int *mant)
*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;
numbands = 3 * tccp->numresolutions - 2;
for (bandno = 0; bandno < numbands; bandno++)
{
for (bandno = 0; bandno < numbands; bandno++) {
double stepsize;
int resno, level, orient, gain;
@ -253,12 +233,9 @@ calc_explicit_stepsizes (j2k_tccp_t * tccp, int prec)
tccp->qmfbid == 0 ? 0 : (orient ==
0 ? 0 : (orient == 1
|| orient == 2 ? 1 : 2));
if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT)
{
if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
stepsize = 1.0;
}
else
{
} else {
double norm = dwt_norms_97[orient][level];
stepsize = (1 << (gain + 1)) / norm;
}
@ -268,8 +245,7 @@ calc_explicit_stepsizes (j2k_tccp_t * tccp, int prec)
}
}
int
main (int argc, char **argv)
int main(int argc, char **argv)
{
int len;
int NumResolution, numD_min; /* NumResolution : number of resolution */
@ -338,19 +314,16 @@ main (int argc, char **argv)
cp.intermed_file = 1;
while (1)
{
while (1) {
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");
if (c == -1)
break;
switch (c)
{
switch (c) {
case 'i': /* IN fill */
infile = optarg;
s = optarg;
while (*s)
{
while (*s) {
s++;
}
s--;
@ -361,8 +334,7 @@ main (int argc, char **argv)
S1 = *s;
if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
|| (S1 == 'P' && S2 == 'G' && S3 == 'X'))
{
|| (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
cp.image_type = 0;
break;
}
@ -374,15 +346,13 @@ main (int argc, char **argv)
&& S3 == 'M')
|| (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
&& S2 == 'p'
&& S3 == 'm'))
{
&& S3 == 'm')) {
cp.image_type = 1;
break;
}
if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
|| (S1 == 'B' && S2 == 'M' && S3 == 'P'))
{
|| (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
cp.image_type = 2;
break;
}
@ -394,8 +364,7 @@ main (int argc, char **argv)
/* ----------------------------------------------------- */
case 'o': /* OUT fill */
outfile = optarg;
while (*outfile)
{
while (*outfile) {
outfile++;
}
outfile--;
@ -413,8 +382,7 @@ main (int argc, char **argv)
else if ((S1 == 'j' && S2 == 'p' && S3 == '2')
|| (S1 == 'J' && S2 == 'P' && S3 == '2'))
cp.JPEG2000_format = 1;
else
{
else {
fprintf(stderr,
"Unknown output format image *.%c%c%c [only *.j2k, *.jp2]!! \n",
S1, S2, S3);
@ -427,11 +395,9 @@ main (int argc, char **argv)
/* ----------------------------------------------------- */
case 'r': /* rates rates/distorsion */
s = optarg;
while (sscanf (s, "%d", &tcp_init->rates[tcp_init->numlayers]) == 1)
{
while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers]) == 1) {
tcp_init->numlayers++;
while (*s && *s != ',')
{
while (*s && *s != ',') {
s++;
}
if (!*s)
@ -445,11 +411,9 @@ main (int argc, char **argv)
case 'q': /* add fixed_quality */
s = optarg;
while (sscanf(s, "%f", &tcp_init->distoratio[tcp_init->numlayers])
== 1)
{
== 1) {
tcp_init->numlayers++;
while (*s && *s != ',')
{
while (*s && *s != ',') {
s++;
}
if (!*s)
@ -471,8 +435,7 @@ main (int argc, char **argv)
(int *) malloc(tcp_init->numlayers * NumResolution * 3 *
sizeof(int));
s = s + 2;
for (i = 0; i < tcp_init->numlayers; i++)
{
for (i = 0; i < tcp_init->numlayers; i++) {
tcp_init->rates[i] = 1;
sscanf(s, "%d,", &cp.matrice[i * NumResolution * 3]);
s += 2;
@ -480,8 +443,7 @@ main (int argc, char **argv)
s++;
cp.matrice[i * NumResolution * 3 + 1] = 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",
&cp.matrice[i * NumResolution * 3 + j * 3 + 0],
&cp.matrice[i * NumResolution * 3 + j * 3 + 1],
@ -511,8 +473,7 @@ main (int argc, char **argv)
/* ----------------------------------------------------- */
case 'c': /* precinct dimension */
s = optarg;
do
{
do {
sep = 0;
sscanf(s, "[%d,%d]%c", &prcw_init[res_spec],
&prch_init[res_spec], &sep);
@ -526,8 +487,7 @@ main (int argc, char **argv)
case 'b': /* code-block dimension */
sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
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,
"!! Size of code_block error (option -b) !!\n\nRestriction :\n * width*height<=4096\n * 4<=width,height<= 1024\n\n");
return 1;
@ -541,15 +501,13 @@ main (int argc, char **argv)
/* ----------------------------------------------------- */
case 'p': /* progression order */
s = optarg;
for (i = 0; i < 4; i++)
{
for (i = 0; i < 4; i++) {
progression[i] = *s;
s++;
}
Prog_order = give_progression(progression);
if (Prog_order == -1)
{
if (Prog_order == -1) {
fprintf(stderr,
"Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
return 1;
@ -557,8 +515,7 @@ main (int argc, char **argv)
break;
/* ----------------------------------------------------- */
case 's': /* subsampling factor */
if (sscanf (optarg, "%d,%d", &subsampling_dx, &subsampling_dy) != 2)
{
if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy) != 2) {
fprintf(stderr,
"'-s' sub-sampling argument error ! [-s dx,dy]\n");
return 1;
@ -566,8 +523,7 @@ main (int argc, char **argv)
break;
/* ----------------------------------------------------- */
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,
"-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
return 1;
@ -588,13 +544,11 @@ main (int argc, char **argv)
while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
&POC[numpocs].resno0, &POC[numpocs].compno0,
&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].tile; */
numpocs++;
while (*s && *s != '/')
{
while (*s && *s != '/') {
s++;
}
if (!*s)
@ -612,10 +566,8 @@ main (int argc, char **argv)
break;
/* ------------------------------------------------------ */
case 'M': /* Mode switch pas tous au point !! */
if (sscanf (optarg, "%d", &value) == 1)
{
for (i = 0; i <= 5; i++)
{
if (sscanf(optarg, "%d", &value) == 1) {
for (i = 0; i <= 5; i++) {
int cache = value & (1 << i);
if (cache)
mode |= (1 << i);
@ -624,18 +576,15 @@ main (int argc, char **argv)
break;
/* ------------------------------------------------------ */
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");
return 1;
}
break;
/* ------------------------------------------------------ */
case 'T': /* Tile offset */
if (sscanf (optarg, "%d,%d", &TX0, &TY0) != 2)
{
fprintf (stderr,
"-T 'tile offset' argument error !! [-T X0,Y0]");
if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
return 1;
}
break;
@ -658,64 +607,53 @@ main (int argc, char **argv)
/* Error messages */
/* -------------- */
if (!infile || !outfile)
{
if (!infile || !outfile) {
fprintf(stderr,
"usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
return 1;
}
if ((cp.disto_alloc || cp.fixed_alloc || cp.fixed_quality)
&& (!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality)))
{
&& (!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality))) {
fprintf(stderr,
"Error: options -r -q and -f can not be used together !!\n");
return 1;
} // mod fixed_quality
/* if no rate entered, lossless by default */
if (tcp_init->numlayers == 0)
{
if (tcp_init->numlayers == 0) {
tcp_init->rates[tcp_init->numlayers] = 0; //MOD antonin : losslessbug
tcp_init->numlayers++;
cp.disto_alloc = 1;
}
if (TX0 > Dim[0] || TY0 > Dim[1])
{
if (TX0 > Dim[0] || TY0 > Dim[1]) {
fprintf(stderr,
"Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
TX0, Dim[0], TY0, Dim[1]);
return 1;
}
for (i = 0; i < numpocs; i++)
{
if (POC[i].prg == -1)
{
for (i = 0; i < numpocs; i++) {
if (POC[i].prg == -1) {
fprintf(stderr,
"Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
i + 1);
}
}
switch (cp.image_type)
{
switch (cp.image_type) {
case 0:
if (Tile_arg)
{
if (Tile_arg) {
if (!pgxtoimage
(infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim, cp))
{
fprintf(stderr, "not a pgx file\n");
return 1;
}
}
else
{
} else {
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");
return 1;
}
@ -723,16 +661,14 @@ main (int argc, char **argv)
break;
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");
return 1;
}
break;
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");
return 1;
}
@ -750,13 +686,10 @@ main (int argc, char **argv)
NumResolution=numD_min+1;
} */
if (Tile_arg == 1)
{
if (Tile_arg == 1) {
cp.tw = int_ceildiv(img.x1 - cp.tx0, cp.tdx);
cp.th = int_ceildiv(img.y1 - cp.ty0, cp.tdy);
}
else
{
} else {
cp.tdx = img.x1 - cp.tx0;
cp.tdy = img.y1 - cp.ty0;
}
@ -771,12 +704,10 @@ main (int argc, char **argv)
/* ---------------------- */
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->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
tcp->distoratio[j] = tcp_init->distoratio[j];
else
@ -791,14 +722,11 @@ main (int argc, char **argv)
numpocs_tile = 0;
tcp->POC = 0;
if (numpocs)
{
if (numpocs) {
/* intialisation of POC */
tcp->POC = 1;
for (i = 0; i < numpocs; i++)
{
if (tileno == POC[i].tile - 1 || POC[i].tile == -1)
{
for (i = 0; i < numpocs; i++) {
if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
tcp_poc = &tcp->pocs[numpocs_tile];
tcp_poc->resno0 = POC[numpocs_tile].resno0;
tcp_poc->compno0 = POC[numpocs_tile].compno0;
@ -814,8 +742,7 @@ main (int argc, char **argv)
tcp->numpocs = numpocs_tile;
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->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct */
tccp->numresolutions = NumResolution;
@ -829,13 +756,10 @@ main (int argc, char **argv)
tccp->roishift = ROI_shift;
else
tccp->roishift = 0;
if (CSty & J2K_CCP_CSTY_PRT)
{
if (CSty & J2K_CCP_CSTY_PRT) {
int p = 0;
for (j = tccp->numresolutions - 1; j >= 0; j--)
{
if (p < res_spec)
{
for (j = tccp->numresolutions - 1; j >= 0; j--) {
if (p < res_spec) {
if (prcw_init[p] < 1)
tccp->prcw[j] = 1;
else
@ -845,14 +769,10 @@ main (int argc, char **argv)
tccp->prch[j] = 1;
else
tccp->prch[j] = int_floorlog2(prch_init[p]);
}
else
{
} else {
int size_prcw, size_prch;
size_prcw =
prcw_init[res_spec - 1] >> (p - (res_spec - 1));
size_prch =
prch_init[res_spec - 1] >> (p - (res_spec - 1));
size_prcw = prcw_init[res_spec - 1] >> (p - (res_spec - 1));
size_prch = prch_init[res_spec - 1] >> (p - (res_spec - 1));
if (size_prcw < 1)
tccp->prcw[j] = 1;
else
@ -866,11 +786,8 @@ main (int argc, char **argv)
/*printf("\nsize precinct pour level %d : %d,%d\n", 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->prch[j] = 15;
}
@ -881,33 +798,26 @@ 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 */
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");
return 1;
}
}
else
{
} else {
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);
len =
j2k_encode(&img, &cp, outbuf,
cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
if (len == 0)
{
if (len == 0) {
fprintf(stderr, "failed to encode image\n");
return 1;
}
f = fopen(outfile, "wb");
if (!f)
{
if (!f) {
fprintf(stderr, "failed to open %s for writing\n", outfile);
return 1;
}
@ -915,37 +825,32 @@ main (int argc, char **argv)
free(outbuf);
fclose(f);
}
}
else /* JP2 format output */
{
} else { /* JP2 format output */
jp2_struct_t *jp2_struct;
jp2_struct = (jp2_struct_t *) malloc(sizeof(jp2_struct_t));
jp2_struct->image = &img;
/* Initialising the standard JP2 box content */
/* If you wish to modify those boxes, you have to modify the jp2_struct content */
if (jp2_init_stdjp2 (jp2_struct, &img))
{
if (jp2_init_stdjp2(jp2_struct, &img)) {
fprintf(stderr, "Error with jp2 initialization");
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 */
cp.intermed_file = 0;
}
outbuf = (char *) malloc(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);
if (len == 0)
{
if (len == 0) {
fprintf(stderr, "failed to encode image\n");
return 1;
}
f = fopen(outfile, "wb");
if (!f)
{
if (!f) {
fprintf(stderr, "failed to open %s for writing\n", outfile);
return 1;
}
@ -956,27 +861,20 @@ main (int argc, char **argv)
/* Remove the temporary files */
/* -------------------------- */
if (cp.image_type)
{ /* PNM PGM PPM */
for (i = 0; i < img.numcomps; i++)
{
if (cp.image_type) { /* PNM PGM PPM */
for (i = 0; i < img.numcomps; i++) {
char tmp;
sprintf(&tmp, "Compo%d", i);
if (remove (&tmp) == -1)
{
if (remove(&tmp) == -1) {
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;
sprintf(&tmp, "bandtile%d", i + 1);
if (remove (&tmp) == -1)
{
if (remove(&tmp) == -1) {
fprintf(stderr, "failed to kill %s file !\n", &tmp);
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff