diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:24:15 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:24:15 +0200 |
commit | a30ba67504ffd12c4db499adbb5ce47a7d1f6036 (patch) | |
tree | 9ae1a7e3849dda6bbb5c578232f6f2fa5b2e7e7e /profile/profin.c | |
parent | 89e99e8a827859729729dfc92d74be4a8f96f1a4 (diff) | |
parent | 094535c010320967639e8e86f974d878e80baa72 (diff) |
New release 1.7.0
Diffstat (limited to 'profile/profin.c')
-rw-r--r-- | profile/profin.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/profile/profin.c b/profile/profin.c index c703c42..98cad65 100644 --- a/profile/profin.c +++ b/profile/profin.c @@ -678,15 +678,15 @@ make_input_icc( if ((ri = icg->find_field(icg, 0, "RGB_R")) < 0) error ("Input file doesn't contain field RGB_R"); if (icg->t[0].ftype[ri] != r_t) - error ("Field CMYK_C is wrong type - corrupted file ?"); + error ("Field RGB_R is wrong type - corrupted file ?"); if ((gi = icg->find_field(icg, 0, "RGB_G")) < 0) error ("Input file doesn't contain field RGB_G"); if (icg->t[0].ftype[gi] != r_t) - error ("Field CMYK_M is wrong type - corrupted file ?"); + error ("Field RGB_G is wrong type - corrupted file ?"); if ((bi = icg->find_field(icg, 0, "RGB_B")) < 0) error ("Input file doesn't contain field RGB_B"); if (icg->t[0].ftype[bi] != r_t) - error ("Field CMYK_Y is wrong type - corrupted file ?"); + error ("Field RGB_B is wrong type - corrupted file ?"); if (spec == 0) { /* Using instrument tristimulous value */ @@ -838,7 +838,9 @@ make_input_icc( wr_xicc, icmFwd, icmDefaultIntent, icmLuOrdNorm, flags, /* Flags */ - npat, npat, tpat, NULL, 0.0, wpscale, smooth, avgdev, 1.0, + npat, npat, tpat, NULL, 0.0, wpscale, +// NULL, /* bpo */ + smooth, avgdev, 1.0, NULL, NULL, NULL, iquality)) == NULL) error("%d, %s",wr_xicc->errc, wr_xicc->err); @@ -890,7 +892,7 @@ make_input_icc( /* Create gamma/matrix model to extrapolate with. */ /* (Use ofset & gain, gamma curve as 0th order with 1 harmonic, */ /* and smooth it.) */ - if ((mm = new_MatrixModel(verb, nmpat, mpat, wantLab, + if ((mm = new_MatrixModel(wr_icco, verb, nmpat, mpat, wantLab, /* quality */ -1, /* isLinear */ ptype == prof_matonly, /* isGamma */ 0, /* isShTRC */ 0, /* shape0gam */ 1, /* clipbw */ 0, /* clipprims */ 0, @@ -1123,7 +1125,9 @@ make_input_icc( ICX_2PASSSMTH | #endif flags, /* Flags */ - npat + nxpat, npat, tpat, NULL, 0.0, wpscale, smooth, avgdev, 1.0, + npat + nxpat, npat, tpat, NULL, 0.0, wpscale, +// NULL, /* bpo */ + smooth, avgdev, 1.0, NULL, NULL, NULL, iquality)) == NULL) error ("%d, %s",wr_xicc->errc, wr_xicc->err); |