[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31533] trunk/blender/source/blender/imbuf /intern/cineon/cineon_dpx.c: DPX files are linear now, the gamma value in the file header should

Ton Roosendaal ton at blender.org
Mon Aug 23 13:46:12 CEST 2010


Revision: 31533
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31533
Author:   ton
Date:     2010-08-23 13:46:12 +0200 (Mon, 23 Aug 2010)

Log Message:
-----------
DPX files are linear now, the gamma value in the file header should
be on 1.0 then, otherwise software thinks it's linear with gamma
applied. Verified on Arri Laser for film recording.

Modified Paths:
--------------
    trunk/blender/source/blender/imbuf/intern/cineon/cineon_dpx.c

Modified: trunk/blender/source/blender/imbuf/intern/cineon/cineon_dpx.c
===================================================================
--- trunk/blender/source/blender/imbuf/intern/cineon/cineon_dpx.c	2010-08-23 11:04:43 UTC (rev 31532)
+++ trunk/blender/source/blender/imbuf/intern/cineon/cineon_dpx.c	2010-08-23 11:46:12 UTC (rev 31533)
@@ -53,7 +53,7 @@
 	
 	params->blackPoint = 95;
 	params->whitePoint = 685;
-	params->gamma = 1.7f;
+	params->gamma = 1.0f;
 	params->doLogarithm = 0;
 	
 }





More information about the Bf-blender-cvs mailing list