aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJonathan Marshall <jmarshall@never.you.mind>2012-12-16 20:53:56 +1300
committerJonathan Marshall <jmarshall@never.you.mind>2012-12-16 20:53:56 +1300
commite39b79fc0046364d4825954383570521ff8bdcb6 (patch)
treed38915c536f067e92b765873e080c1255c8a865c /lib
parentc8bd44b30e7393305b9aad42dcf7307122ae66a0 (diff)
[libdcr] fix thread safety
Diffstat (limited to 'lib')
-rw-r--r--lib/cximage-6.0/raw/libdcr.c100
-rw-r--r--lib/cximage-6.0/raw/libdcr.h18
2 files changed, 62 insertions, 56 deletions
diff --git a/lib/cximage-6.0/raw/libdcr.c b/lib/cximage-6.0/raw/libdcr.c
index 2922ff0134..81bf2fb322 100644
--- a/lib/cximage-6.0/raw/libdcr.c
+++ b/lib/cximage-6.0/raw/libdcr.c
@@ -543,21 +543,19 @@ dcr_getbits(p, n) where 0 <= n <= 25 returns an n-bit integer
*/
unsigned DCR_CLASS dcr_getbits (DCRAW* p, int nbits)
{
- static unsigned bitbuf=0;
- static int vbits=0, reset=0;
unsigned c;
if (nbits == -1)
- return bitbuf = vbits = reset = 0;
- if (nbits == 0 || reset) return 0;
- while (vbits < nbits) {
+ return p->getbits_bitbuf = p->getbits_vbits = p->getbits_reset = 0;
+ if (nbits == 0 || p->getbits_reset) return 0;
+ while (p->getbits_vbits < nbits) {
if ((c = dcr_fgetc(p->obj_)) == EOF) dcr_derror(p);
- if ((reset = p->zero_after_ff && c == 0xff && dcr_fgetc(p->obj_))) return 0;
- bitbuf = (bitbuf << 8) + (uchar) c;
- vbits += 8;
+ if ((p->getbits_reset = p->zero_after_ff && c == 0xff && dcr_fgetc(p->obj_))) return 0;
+ p->getbits_bitbuf = (p->getbits_bitbuf << 8) + (uchar) c;
+ p->getbits_vbits += 8;
}
- vbits -= nbits;
- return bitbuf << (32-nbits-vbits) >> (32-nbits);
+ p->getbits_vbits -= nbits;
+ return p->getbits_bitbuf << (32-nbits-p->getbits_vbits) >> (32-nbits);
}
void DCR_CLASS dcr_init_decoder(DCRAW* p)
@@ -595,27 +593,26 @@ void DCR_CLASS dcr_init_decoder(DCRAW* p)
uchar * DCR_CLASS dcr_make_decoder (DCRAW* p, const uchar *source, int level)
{
struct dcr_decode *cur;
- static int leaf;
int i, next;
- if (level==0) leaf=0;
+ if (level==0) p->make_decoder_leaf=0;
cur = p->free_decode++;
if (p->free_decode > p->first_decode+2048) {
fprintf (stderr,_("%s: decoder table overflow\n"), p->ifname);
longjmp (p->failure, 2);
}
- for (i=next=0; i <= leaf && next < 16; )
+ for (i=next=0; i <= p->make_decoder_leaf && next < 16; )
i += source[next++];
- if (i > leaf) {
+ if (i > p->make_decoder_leaf) {
if (level < next) {
cur->branch[0] = p->free_decode;
dcr_make_decoder (p, source, level+1);
cur->branch[1] = p->free_decode;
dcr_make_decoder (p, source, level+1);
} else
- cur->leaf = source[16 + leaf++];
+ cur->leaf = source[16 + p->make_decoder_leaf++];
}
- return (uchar *) source + 16 + leaf;
+ return (uchar *) source + 16 + p->make_decoder_leaf;
}
void DCR_CLASS dcr_crw_init_tables (DCRAW* p, unsigned table)
@@ -1571,17 +1568,14 @@ void DCR_CLASS dcr_phase_one_load_raw(DCRAW* p)
unsigned DCR_CLASS dcr_ph1_bits (DCRAW* p,int nbits)
{
- static UINT64 bitbuf=0;
- static int vbits=0;
-
if (nbits == -1)
- return (unsigned int)(bitbuf = vbits = 0);
+ return (unsigned int)(p->ph1_bits_bitbuf = p->ph1_bits_vbits = 0);
if (nbits == 0) return 0;
- if ((vbits -= nbits) < 0) {
- bitbuf = bitbuf << 32 | dcr_get4(p);
- vbits += 32;
+ if ((p->ph1_bits_vbits -= nbits) < 0) {
+ p->ph1_bits_bitbuf = p->ph1_bits_bitbuf << 32 | dcr_get4(p);
+ p->ph1_bits_vbits += 32;
}
- return (unsigned int)(bitbuf << (64-nbits-vbits) >> (64-nbits));
+ return (unsigned int)(p->ph1_bits_bitbuf << (64-nbits-p->ph1_bits_vbits) >> (64-nbits));
}
void DCR_CLASS dcr_phase_one_load_raw_c(DCRAW* p)
@@ -1821,18 +1815,16 @@ void DCR_CLASS nokia_load_raw(DCRAW* p)
unsigned DCR_CLASS dcr_pana_bits (DCRAW* p,int nbits)
{
- static uchar buf[0x4000];
- static int vbits;
int byte;
- if (!nbits) return vbits=0;
- if (!vbits) {
- dcr_fread(p->obj_, buf+p->load_flags, 1, 0x4000-p->load_flags);
- dcr_fread(p->obj_, buf, 1, p->load_flags);
+ if (!nbits) return p->pana_bits_vbits=0;
+ if (!p->pana_bits_vbits) {
+ dcr_fread(p->obj_, p->pana_bits_buf+p->load_flags, 1, 0x4000-p->load_flags);
+ dcr_fread(p->obj_, p->pana_bits_buf, 1, p->load_flags);
}
- vbits = (vbits - nbits) & 0x1ffff;
- byte = vbits >> 3 ^ 0x3ff0;
- return (buf[byte] | buf[byte+1] << 8) >> (vbits & 7) & ~(-1 << nbits);
+ p->pana_bits_vbits = (p->pana_bits_vbits - nbits) & 0x1ffff;
+ byte = p->pana_bits_vbits >> 3 ^ 0x3ff0;
+ return (p->pana_bits_buf[byte] | p->pana_bits_buf[byte+1] << 8) >> (p->pana_bits_vbits & 7) & ~(-1 << nbits);
}
void DCR_CLASS dcr_panasonic_load_raw(DCRAW* p)
@@ -2061,7 +2053,6 @@ const int * DCR_CLASS dcr_make_decoder_int (DCRAW* p, const int *source, int lev
int DCR_CLASS dcr_radc_token (DCRAW* p, int tree)
{
int t;
- static struct dcr_decode *dstart[18], *dindex;
static const int *s, source[] = {
1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
@@ -2085,7 +2076,7 @@ int DCR_CLASS dcr_radc_token (DCRAW* p, int tree)
if (p->free_decode == p->first_decode)
for (s=source, t=0; t < 18; t++) {
- dstart[t] = p->free_decode;
+ p->radc_token_dstart[t] = p->free_decode;
s = dcr_make_decoder_int (p, s, 0);
}
if (tree == 18) {
@@ -2094,9 +2085,9 @@ int DCR_CLASS dcr_radc_token (DCRAW* p, int tree)
else
return (dcr_getbits(p, 5) << 3) + 4; /* DC40, Fotoman Pixtura */
}
- for (dindex = dstart[tree]; dindex->branch[0]; )
- dindex = dindex->branch[dcr_getbits(p, 1)];
- return dindex->leaf;
+ for (p->radc_token_dindex = p->radc_token_dstart[tree]; p->radc_token_dindex->branch[0]; )
+ p->radc_token_dindex = p->radc_token_dindex->branch[dcr_getbits(p, 1)];
+ return p->radc_token_dindex->leaf;
}
#define FORYX for (y=1; y < 3; y++) for (x=col+1; x >= col; x--)
@@ -2179,7 +2170,7 @@ void DCR_CLASS dcr_kodak_jpeg_load_raw(DCRAW* p) {}
METHODDEF(boolean)
fill_input_buffer (j_decompress_ptr cinfo)
{
- static uchar jpeg_buffer[4096];
+ static uchar jpeg_buffer[4096]; // NOTE: This static not used as NO_JPEG is defined
size_t nbytes;
//nbytes = dcr_fread(p->obj_, jpeg_buffer, 1, 4096);
@@ -2460,21 +2451,19 @@ void DCR_CLASS dcr_kodak_thumb_load_raw(DCRAW* p)
p->maximum = (1 << (p->thumb_misc & 31)) - 1;
}
-void DCR_CLASS dcr_sony_decrypt (unsigned *data, int len, int start, int key)
+void DCR_CLASS dcr_sony_decrypt (DCRAW *p, unsigned *data, int len, int start, int key)
{
- static unsigned pad[128], p;
-
if (start) {
- for (p=0; p < 4; p++)
- pad[p] = key = key * 48828125 + 1;
- pad[3] = pad[3] << 1 | (pad[0]^pad[2]) >> 31;
- for (p=4; p < 127; p++)
- pad[p] = (pad[p-4]^pad[p-2]) << 1 | (pad[p-3]^pad[p-1]) >> 31;
- for (p=0; p < 127; p++)
- pad[p] = htonl(pad[p]);
+ for (p->sony_decrypt_p=0; p->sony_decrypt_p < 4; p->sony_decrypt_p++)
+ p->sony_decrypt_pad[p->sony_decrypt_p] = key = key * 48828125 + 1;
+ p->sony_decrypt_pad[3] = p->sony_decrypt_pad[3] << 1 | (p->sony_decrypt_pad[0]^p->sony_decrypt_pad[2]) >> 31;
+ for (p->sony_decrypt_p=4; p->sony_decrypt_p < 127; p->sony_decrypt_p++)
+ p->sony_decrypt_pad[p->sony_decrypt_p] = (p->sony_decrypt_pad[p->sony_decrypt_p-4]^p->sony_decrypt_pad[p->sony_decrypt_p-2]) << 1 | (p->sony_decrypt_pad[p->sony_decrypt_p-3]^p->sony_decrypt_pad[p->sony_decrypt_p-1]) >> 31;
+ for (p->sony_decrypt_p=0; p->sony_decrypt_p < 127; p->sony_decrypt_p++)
+ p->sony_decrypt_pad[p->sony_decrypt_p] = htonl(p->sony_decrypt_pad[p->sony_decrypt_p]);
}
while (len--)
- *data++ ^= pad[p++ & 127] = pad[(p+1) & 127] ^ pad[(p+65) & 127];
+ *data++ ^= p->sony_decrypt_pad[p->sony_decrypt_p++ & 127] = p->sony_decrypt_pad[(p->sony_decrypt_p+1) & 127] ^ p->sony_decrypt_pad[(p->sony_decrypt_p+65) & 127];
}
void DCR_CLASS dcr_sony_load_raw(DCRAW* p)
@@ -2489,7 +2478,7 @@ void DCR_CLASS dcr_sony_load_raw(DCRAW* p)
key = dcr_get4(p);
dcr_fseek(p->obj_, 164600, SEEK_SET);
dcr_fread(p->obj_, head, 1, 40);
- dcr_sony_decrypt ((unsigned int *) head, 10, 1, key);
+ dcr_sony_decrypt (p, (unsigned int *) head, 10, 1, key);
for (i=26; i-- > 22; )
key = key << 8 | head[i];
dcr_fseek(p->obj_, p->data_offset, SEEK_SET);
@@ -2497,7 +2486,7 @@ void DCR_CLASS dcr_sony_load_raw(DCRAW* p)
dcr_merror (p, pixel, "sony_load_raw()");
for (row=0; row < p->height; row++) {
if (dcr_fread(p->obj_, pixel, 2, p->raw_width) < p->raw_width) dcr_derror(p);
- dcr_sony_decrypt ((unsigned int *) pixel, p->raw_width/2, !row, key);
+ dcr_sony_decrypt (p, (unsigned int *) pixel, p->raw_width/2, !row, key);
for (col=9; col < p->left_margin; col++)
p->black += ntohs(pixel[col]);
for (col=0; col < p->width; col++)
@@ -2714,13 +2703,12 @@ void DCR_CLASS dcr_smal_v9_load_raw(DCRAW* p)
void DCR_CLASS dcr_foveon_decoder (DCRAW* p, unsigned size, unsigned code)
{
- static unsigned huff[1024];
struct dcr_decode *cur;
int i, len;
if (!code) {
for (i=0; i < (int)size; i++)
- huff[i] = dcr_get4(p);
+ p->foveon_decoder_huff[i] = dcr_get4(p);
dcr_init_decoder(p);
}
cur = p->free_decode++;
@@ -2730,7 +2718,7 @@ void DCR_CLASS dcr_foveon_decoder (DCRAW* p, unsigned size, unsigned code)
}
if (code)
for (i=0; i < (int)size; i++)
- if (huff[i] == code) {
+ if (p->foveon_decoder_huff[i] == code) {
cur->leaf = i;
return;
}
@@ -5233,7 +5221,7 @@ guess_cfa_pc:
dcr_stream_obj *sobj_;
dcr_fseek(p->obj_, sony_offset, SEEK_SET);
dcr_fread(p->obj_, buf, sony_length, 1);
- dcr_sony_decrypt (buf, sony_length/4, 1, sony_key);
+ dcr_sony_decrypt (p, buf, sony_length/4, 1, sony_key);
sops_ = p->ops_;
sobj_ = p->obj_;
diff --git a/lib/cximage-6.0/raw/libdcr.h b/lib/cximage-6.0/raw/libdcr.h
index dc8cc117e8..3e9001608b 100644
--- a/lib/cximage-6.0/raw/libdcr.h
+++ b/lib/cximage-6.0/raw/libdcr.h
@@ -218,6 +218,24 @@ struct dcr_DCRAW {
void (*thumb_load_raw)(DCRAW *);
jmp_buf failure;
char *sz_error;
+ /* local statics below here */
+ unsigned getbits_bitbuf;
+ int getbits_vbits;
+ int getbits_reset;
+
+ int make_decoder_leaf;
+
+ unsigned long long ph1_bits_bitbuf;
+ int ph1_bits_vbits;
+
+ uchar pana_bits_buf[0x4000];
+ int pana_bits_vbits;
+
+ struct dcr_decode *radc_token_dstart[18], *radc_token_dindex;
+
+ unsigned sony_decrypt_pad[128], sony_decrypt_p;
+
+ unsigned foveon_decoder_huff[1024];
};