فهرست منبع

process_pipeline: Correctly set BlackLevel TIFF tag

Sebastian Krzyszkowiak 3 سال پیش
والد
کامیت
3691ece911
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/process_pipeline.c

+ 2 - 1
src/process_pipeline.c

@@ -429,7 +429,8 @@ process_image_for_capture(const uint8_t *image, int count)
 		TIFFSetField(tif, TIFFTAG_WHITELEVEL, 1, &camera->whitelevel);
 	}
 	if (camera->blacklevel) {
-		TIFFSetField(tif, TIFFTAG_BLACKLEVEL, 1, &camera->blacklevel);
+		const float blacklevel = camera->blacklevel;
+		TIFFSetField(tif, TIFFTAG_BLACKLEVEL, 1, &blacklevel);
 	}
 	TIFFCheckpointDirectory(tif);
 	printf("Writing frame to %s\n", fname);