Skip to content
Permalink
Browse files
Set lift from Sequencer with 0.0 neutral
  • Loading branch information
Vincent Girès committed Jun 3, 2019
1 parent a611eef commit 2ff93b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -172,7 +172,7 @@ static void colorBalance_init_data(SequenceModifierData *smd)
cbmd->color_multiply = 1.0f;

for (c = 0; c < 3; c++) {
cbmd->color_balance.lift[c] = 1.0f;
cbmd->color_balance.lift[c] = 0.0f;
cbmd->color_balance.gamma[c] = 1.0f;
cbmd->color_balance.gain[c] = 1.0f;
}
@@ -2273,7 +2273,7 @@ static StripColorBalance calc_cb(StripColorBalance *cb_)
int c;

for (c = 0; c < 3; c++) {
cb.lift[c] = 2.0f - cb.lift[c];
cb.lift[c] = 1.0f - cb.lift[c];
}

if (cb.flag & SEQ_COLOR_BALANCE_INVERSE_LIFT) {

0 comments on commit 2ff93b5

Please sign in to comment.