skip ca_autocorrect

This commit is contained in:
ffsup2
2010-10-28 23:59:21 +02:00
parent e137ccd151
commit 5e7a81f0f1

View File

@@ -83,17 +83,18 @@ void ImProcCoordinator::updatePreviewImage (int todo, Crop* cropCall) {
highDetailNeeded=true; highDetailNeeded=true;
break; break;
} }
progress ("Applying white balance, color correction & sRBG conversion...",100*readyphase/numofphases);
if ( todo & M_PREPROC)
imgsrc->preprocess( params.raw );
if( todo & M_RAW){
RAWParams rp = params.raw; RAWParams rp = params.raw;
if( !highDetailNeeded ){ if( !highDetailNeeded ){
rp.dmethod = RAWParams::methodstring[RAWParams::fast]; rp.dmethod = RAWParams::methodstring[RAWParams::fast];
rp.ca_autocorrect = false; rp.ca_autocorrect = false;
rp.hotdeadpix_filt = false;
rp.ccSteps = 0; rp.ccSteps = 0;
}
progress ("Applying white balance, color correction & sRBG conversion...",100*readyphase/numofphases);
if ( todo & M_PREPROC)
imgsrc->preprocess( rp );
if( todo & M_RAW){
if( !highDetailNeeded ){
fineDetailsProcessed = false; fineDetailsProcessed = false;
}else }else
fineDetailsProcessed = true; fineDetailsProcessed = true;