Bugfix for myfile.h, Issue 1303 #11, thanks to drougge
This commit is contained in:
parent
bb2c65be1c
commit
fd7de26993
@ -64,7 +64,7 @@ inline void fseek (IMFILE* f, int p, int how) {
|
||||
else if (how==SEEK_CUR)
|
||||
f->pos += p;
|
||||
else if (how==SEEK_END)
|
||||
f->pos = f->size-p;
|
||||
f->pos = f->size+p;
|
||||
|
||||
if (f->pos < 0 || f->pos> f->size)
|
||||
f->pos = fpos;
|
||||
|
@ -467,7 +467,7 @@ IImage16* processImage (ProcessingJob* pjob, int& errorCode, ProgressListener* p
|
||||
|
||||
}
|
||||
|
||||
printf("SIMPL cha=%f red=%f bl=%f \n",chM,maxr,maxb);
|
||||
// printf("SIMPL cha=%f red=%f bl=%f \n",chM,maxr,maxb);
|
||||
|
||||
params.dirpyrDenoise.chroma=chM/(autoNR*multip*adjustr);
|
||||
params.dirpyrDenoise.redchro=maxr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user