Skip to content

Commit

Permalink
Use lossless optimization
Browse files Browse the repository at this point in the history
Signed-off-by: Rémi Achard <[email protected]>
  • Loading branch information
remia committed Sep 27, 2022
1 parent db75b70 commit 9fa04fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenColorIO/Baker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,9 @@ void Baker::bake(std::ostream & os) const
if(!shaperSpace.empty())
{
ConstCPUProcessorRcPtr inputToShaper = getConfig()->getProcessor(
inputSpace.c_str(), shaperSpace.c_str())->getDefaultCPUProcessor();
inputSpace.c_str(), shaperSpace.c_str())->getOptimizedCPUProcessor(OPTIMIZATION_LOSSLESS);
ConstCPUProcessorRcPtr shaperToInput = getConfig()->getProcessor(
shaperSpace.c_str(), inputSpace.c_str())->getDefaultCPUProcessor();
shaperSpace.c_str(), inputSpace.c_str())->getOptimizedCPUProcessor(OPTIMIZATION_LOSSLESS);

if(inputToShaper->hasChannelCrosstalk() || shaperToInput->hasChannelCrosstalk())
{
Expand Down

0 comments on commit 9fa04fa

Please sign in to comment.