Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey@blender.org>2022-01-03 18:07:40 +0300
committerSergey Sharybin <sergey@blender.org>2022-01-05 16:07:21 +0300
commitb1bd0f8ffdaf5e5df3038ae688a7b4eb8d10ba6d (patch)
tree4ee2b4e5eeeaeab5cd66ad98201db80fe4e6bcd7
parent13e7065dd2177aae99fc113f47a8b8debbda551c (diff)
Enable OpenEXR DWAB compresstion
The DWAB compression was disabled in the d59721c2c311 due to a bug in the OpenEXR library which is now resolved. Re-enable the DWAB compression for OpenEXR output. It is a simple change, and DWAB often behaves better than DWAA. Differential Revision: https://developer.blender.org/D13713
-rw-r--r--source/blender/makesrna/intern/rna_scene.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index d7d13f151d9..c6c7341bcc6 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -86,8 +86,7 @@ const EnumPropertyItem rna_enum_exr_codec_items[] = {
{R_IMF_EXR_CODEC_B44, "B44", 0, "B44 (lossy)", ""},
{R_IMF_EXR_CODEC_B44A, "B44A", 0, "B44A (lossy)", ""},
{R_IMF_EXR_CODEC_DWAA, "DWAA", 0, "DWAA (lossy)", ""},
- /* NOTE: Commented out for until new OpenEXR is released, see T50673. */
- /* {R_IMF_EXR_CODEC_DWAB, "DWAB", 0, "DWAB (lossy)", ""}, */
+ {R_IMF_EXR_CODEC_DWAB, "DWAB", 0, "DWAB (lossy)", ""},
{0, NULL, 0, NULL, NULL},
};
#endif