This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version 1 | |
From 0.000000 1.000000 | |
Length 4096 | |
Components 1 | |
{ | |
1.3793103448276E-1 | |
1.3983263082880E-1 | |
1.4173422717484E-1 | |
1.4363582352088E-1 | |
1.4553741986692E-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Filmlike Dynamic Range LUT configuration for | |
# Blender. Crafted by Troy James Sobotka with | |
# special thanks and feedback from Guillermo | |
# Espertino, Claudio Rocha, Bassam Kurdali, Eugenio | |
# Pignataro, Henri Hebeisen, Jason Clarke, | |
# Haarm-Peter Duiker, Thomas Mansencal, and Timothy | |
# Lottes. | |
ocio_profile_version: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- !<ColorSpace> | |
name: Sony-S-Log3-S-Gamut3.Cine | |
family: | |
equalitygroup: | |
bitdepth: 32f | |
description: | | |
S-Log3-S-Gamut3.Cine to XYZ to 709 | |
isdata: false | |
allocation: uniform |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# OpenColorIO configuration file for Blender | |
# | |
# Based on aces, nuke-default and spi configurations from OpenColorIO-Config | |
ocio_profile_version: 1 | |
search_path: luts | |
strictparsing: true | |
luma: [0.2126, 0.7152, 0.0722] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!<ColorSpace> | |
name: dcip3 | |
family: | |
equalitygroup: | |
bitdepth: 16f | |
description: | | |
OpenDCP input LUT with DCI reference white and Gamma 2.6 | |
isdata: false | |
allocation: uniform | |
allocationvars: [0, 1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: source/blender/blenkernel/BKE_node.h | |
=================================================================== | |
--- source/blender/blenkernel/BKE_node.h (revision 55048) | |
+++ source/blender/blenkernel/BKE_node.h (working copy) | |
@@ -717,6 +717,8 @@ | |
#define CMP_NODE_MAP_RANGE 319 | |
+#define CMP_NODE_COLORSPACETRANSFORM 320 | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./ffmbc -i A014_C014_08289J_S000.mov -pix_fmt rgb48be image-%4d.dpx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[...] | |
static void node_composit_init_blur(bNodeTree *UNUSED(ntree), bNode *node, bNodeTemplate *UNUSED(ntemp)) | |
{ | |
node->storage = MEM_callocN(sizeof(NodeBlurData), "node blur data"); | |
} | |
[...] | |
// Changes to: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int gotFrame = 0; | |
while (av_read_frame(pFormatCtx, &packet) == 0) | |
{ | |
if (packet.stream_index == myVideoStream) | |
{ | |
avcodec_decode_video2(pCodecCtx, pFrame, &gotFrame, &packet); | |
if (gotFrame) | |
{ |
NewerOlder