#ifndef lint static const char RCSid[] = "$Id: tmap16bit.c,v 1.4 2003/07/27 22:12:01 schorsch Exp $"; #endif /* * Routines for tone-mapping 16-bit/primary pixels * * Externals declared in tonemap.h */ #include "copyright.h" #include #include #include "tmprivat.h" #define LOGTABBITS 11 /* log table is 1<=0 ? (i)<<(s) : (i)>>-(s)) /* Fill our log table */ static void mkLogTable() { int i; if (logtab[0] != 0.f) return; for (i = 1<mongam == cur_mongam) return; for (i = MONGAMTSZ; i--; ) mongamtab[i] = 256.*pow((i+.5)*(1./MONGAMTSZ), 1./tmTop->mongam); cur_mongam = tmTop->mongam; } /* Find normalizing shift value for a 2-byte unsigned integer */ static int normShift16(int i) { int s = 0; if (!i) return(-1); while (!(i & 0x8000)) { i <<= 1; ++s; } return(s); } /* Find common normalizing shift for 3 2-byte unsigned integers */ static int normShift48(uint16 clr48[3]) { int imax = (clr48[1] > clr48[0] ? clr48[1] : clr48[0]); if (clr48[2] > imax) imax = clr48[2]; return(normShift16(imax)); } /* convert at 48-bit tristimulus value to a COLOR */ static void rgb48_color(COLOR col, uint16 clr48[3], double gv) { int nshft; if (gv == 1.) { /* linear case */ col[0] = clr48[0]*(1./(1L<<16)); col[1] = clr48[1]*(1./(1L<<16)); col[2] = clr48[2]*(1./(1L<<16)); return; } /* non-linear case */ /* XXX Uncomment if this routine is made public if (gv != cur_gam) mkGamTable(gv); */ nshft = normShift48(clr48); if (nshft < 0) { col[0] = col[1] = col[2] = .0f; return; } col[0] = gamtab[imultpow2(clr48[0],GAMTABBITS-16+nshft)] * gammul[nshft]; col[1] = gamtab[imultpow2(clr48[1],GAMTABBITS-16+nshft)] * gammul[nshft]; col[2] = gamtab[imultpow2(clr48[2],GAMTABBITS-16+nshft)] * gammul[nshft]; } /* Convert 16-bit gray scanline to encoded luminance */ int tmCvGray16(TMbright *ls, uint16 *scan, int len, double gv) { static char funcName[] = "tmCvGray16"; static double cur_inpsf = 1.; static double log_inpsf = 0.; int nshft; double d; if (tmTop == NULL) returnErr(TM_E_TMINVAL); if ((ls == NULL) | (scan == NULL) | (len < 0)) returnErr(TM_E_ILLEGAL); if (gv <= 0.) gv = DEFGAM; /* initialize log table */ if (logtab[0] == 0.f) mkLogTable(); if (cur_inpsf != tmTop->inpsf) log_inpsf = log(cur_inpsf = tmTop->inpsf); /* convert 16-bit grays */ while (len--) { nshft = normShift16(*scan); if (nshft < 0) { /* bogus value */ *ls++ = TM_NOBRT; scan++; continue; } d = logtab[ imultpow2(*scan,LOGTABBITS-15+nshft) & ((1L<0. ? d+.5 : d-.5); scan++; } returnOK; } /* Convert a 48-bit RGB scanline to encoded luminance/chrominance */ int tmCvRGB48(TMbright *ls, BYTE *cs, uint16 (*scan)[3], int len, double gv) { static char funcName[] = "tmCvRGB48"; static double cur_inpsf = 1.; static double log_inpsf = 0.; int i; if (tmTop == NULL) returnErr(TM_E_TMINVAL); if ((ls == NULL) | (scan == NULL) | (len < 0)) returnErr(TM_E_ILLEGAL); if (gv <= 0.) gv = DEFGAM; /* sync input gamma table */ if ((gv != 1.) & (gv != cur_gam)) mkGamTable(gv); if (tmNeedMatrix(tmTop)) { /* need floating point */ COLOR *newscan; newscan = (COLOR *)tempbuffer(len*sizeof(COLOR)); if (newscan == NULL) returnErr(TM_E_NOMEM); for (i = len; i--; ) rgb48_color(newscan[i], scan[i], gv); return(tmCvColors(ls, cs, newscan, len)); } /* sync monitor gamma table */ if (cs != TM_NOCHROM && tmTop->mongam != cur_mongam) mkMonGamTable(); /* initialize log table */ if (logtab[0] == 0.f) mkLogTable(); if (cur_inpsf != tmTop->inpsf) log_inpsf = log(cur_inpsf = tmTop->inpsf); if (tmTop->flags & TM_F_MESOPIC) tmMkMesofact(); /* convert scanline */ for (i = len; i--; ) { int nshft = normShift48(scan[i]); COLOR cmon; double lum; int bi; if (nshft < 0) { bi = TM_NOBRT; /* bogus value */ lum = 1.; } else { int j = GAMTABBITS-16+nshft; int nshft2; double d; /* normalized linear */ setcolor(cmon, gamtab[imultpow2(scan[i][0],j)], gamtab[imultpow2(scan[i][1],j)], gamtab[imultpow2(scan[i][2],j)] ); lum = tmTop->clf[RED]*cmon[RED]; lum += tmTop->clf[GRN]*cmon[GRN]; lum += tmTop->clf[BLU]*cmon[BLU]; /* convert to log Y */ j = lum * (double)(1L<<16); nshft2 = normShift16(j); d = logtab[ imultpow2(j,LOGTABBITS-15+nshft2) & ((1L<0. ? d+.5 : d-.5); } /* world luminance */ ls[i] = bi; if (cs == TM_NOCHROM) /* no color? */ continue; /* mesopic adj. */ if (tmTop->flags & TM_F_MESOPIC && bi < BMESUPPER) { double slum = scotlum(cmon); if (bi < BMESLOWER) setcolor(cmon, slum, slum, slum); else { double pf; pf = (1./256.)*tmMesofact[bi-BMESLOWER]; if (tmTop->flags & TM_F_BW) cmon[RED] = cmon[GRN] = cmon[BLU] = lum; slum *= 1. - pf; cmon[RED] = slum + pf*cmon[RED]; cmon[GRN] = slum + pf*cmon[GRN]; cmon[BLU] = slum + pf*cmon[BLU]; } } else if (tmTop->flags & TM_F_BW) { cmon[RED] = cmon[GRN] = cmon[BLU] = lum; } bi = (double)MONGAMTSZ*tmTop->clf[RED]*cmon[RED]/lum; cs[3*i ] = bi>=MONGAMTSZ ? 255 : mongamtab[bi]; bi = (double)MONGAMTSZ*tmTop->clf[GRN]*cmon[GRN]/lum; cs[3*i+1] = bi>=MONGAMTSZ ? 255 : mongamtab[bi]; bi = (double)MONGAMTSZ*tmTop->clf[BLU]*cmon[BLU]/lum; cs[3*i+2] = bi>=MONGAMTSZ ? 255 : mongamtab[bi]; } returnOK; }