konrad is up :)

This commit is contained in:
tth
2022-02-04 23:39:52 +01:00
parent db7b740b2c
commit 4597598b02
12 changed files with 43 additions and 14 deletions

View File

@@ -36,7 +36,7 @@ return 42.0;
int fimg_decomp_rgbz_color(FloatImg *psrc, FloatImg *pdst, int k)
{
int x, y, x2, y2;
int w2, h2, idx;
int w2, h2;
float cumul, vgray;
#if DEBUG_LEVEL

View File

@@ -40,6 +40,10 @@ if (fimg_images_not_compatible(psrc, pdst)) {
}
foo = fimg_get_minmax_rgb(psrc, minmax);
if (foo) {
fprintf(stderr, "%s : err %d on get minmax\n", __func__, foo);
return foo;
}
if (verbosity) {
fimg_print_minmax(minmax, (char *)__func__);
}

View File

@@ -87,7 +87,7 @@ if (PNG_NO_ERROR != foo) {
}
ptr = datas;
for (idx=0; idx<png.width * png.height; idx++) {
for (idx=0; idx<(int)(png.width*png.height); idx++) {
fimg->R[idx] = (float)*ptr++;
fimg->G[idx] = (float)*ptr++;
fimg->B[idx] = (float)*ptr++;
@@ -132,12 +132,12 @@ if ( 3 != png.bpp ) { /* TO BE PATCHED */
}
/* check if floatimg and PNG have the same size */
if ((fimg->width != png.width) || (fimg->height != png.height)) {
if ((fimg->width != (int)png.width) || (fimg->height != (int)png.height)) {
fprintf(stderr, "%s : fatal error on images sizes\n", __func__);
exit(1);
}
datasize = png.width * png.height * png.bpp;
datasize = png.width * png.height * png.bpp;
datas = malloc(datasize);
if (NULL==datas) {
fprintf(stderr, "%s : fatal memory failure\n", __func__);
@@ -151,7 +151,7 @@ if (PNG_NO_ERROR != foo) {
}
ptr = datas;
for (idx=0; idx<png.width * png.height; idx++) {
for (idx=0; idx<(int)(png.width*png.height); idx++) {
fimg->R[idx] = (float)*ptr++;
fimg->G[idx] = (float)*ptr++;
fimg->B[idx] = (float)*ptr++;
@@ -174,6 +174,10 @@ double maximum, fk;
fprintf(stderr, ">>> %-25s ( %p '%s' 0x%x )\n", __func__, src, outname, flags);
#endif
if (flags) {
fprintf(stderr, "*** in %s, flags are %08x\n", __func__, flags);
}
/* convert ou floating datas to a byte/rgb array */
/* first, alloc a buffer */
sz = src->width * src->height;

View File

@@ -16,7 +16,7 @@
int fimg_killrgb_v(FloatImg *src, FloatImg *dst, int k)
{
int foo, line, col;
int line, col;
int ir;
#if DEBUG_LEVEL

View File

@@ -47,7 +47,7 @@ return 0;
int fimg_split_level(FloatImg *src, FloatImg *dst, int notused)
{
float means[4];
float in[3], out[3];
float in[3];
int foo, idx, surface;
#if DEBUG_LEVEL

View File

@@ -106,6 +106,8 @@ while (pcmd->name) {
}
fprintf(stderr, "\ncompiled on "__DATE__" at "__TIME__"\n");
if (k) fimg_print_version(k);
exit(0);
}
/* --------------------------------------------------------------------- */