X-Git-Url: http://users.mur.at/ms/git/gitweb/?p=OpenColorIO-Configs.git;a=blobdiff_plain;f=aces_1.0.0%2Fpython%2Faces_ocio%2Fcreate_gopro_colorspaces.py;h=b032baab5e216d0202c090757919d3759c0a55bc;hp=f7c4f0fef3ab38900e048ab6c6d7b8dc8b1248a0;hb=f4645c77f9ef867c32aa90d5143f252556456776;hpb=e0eae2a7fcfe1f3955e9a9d1508d3322c6525e65 diff --git a/aces_1.0.0/python/aces_ocio/create_gopro_colorspaces.py b/aces_1.0.0/python/aces_ocio/create_gopro_colorspaces.py index f7c4f0f..b032baa 100644 --- a/aces_1.0.0/python/aces_ocio/create_gopro_colorspaces.py +++ b/aces_1.0.0/python/aces_ocio/create_gopro_colorspaces.py @@ -48,9 +48,11 @@ def create_protune(gamut, Return value description. """ - name = '%s - %s' % (transfer_function, gamut) + # The gamut should be marked as experimental until + # matrices are fully verified + name = '%s - %s - Experimental' % (transfer_function, gamut) if transfer_function == '': - name = 'Linear - %s' % gamut + name = 'Linear - %s - Experimental' % gamut if gamut == '': name = '%s' % transfer_function @@ -134,7 +136,7 @@ def create_colorspaces(lut_directory, lut_resolution_1d): 'Protune', lut_directory, lut_resolution_1d, - ["protuneflat_protunegamut"]) + ["protuneflat_protunegamutexp"]) colorspaces.append(protune_1) # Linearization Only @@ -154,7 +156,7 @@ def create_colorspaces(lut_directory, lut_resolution_1d): 'Protune', lut_directory, lut_resolution_1d, - ["lin_protunegamut"]) + ["lin_protunegamutexp"]) colorspaces.append(protune_3) return colorspaces