2012-08-19 15:41:56 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2012 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup bke
|
2012-08-19 15:41:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_listbase.h"
|
|
|
|
#include "BLI_string.h"
|
2017-01-16 17:33:34 +01:00
|
|
|
#include "BLI_string_utils.h"
|
2012-08-19 15:41:56 +00:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BLI_math.h"
|
|
|
|
|
2015-08-16 17:32:01 +10:00
|
|
|
#include "BLT_translation.h"
|
2013-03-25 08:29:06 +00:00
|
|
|
|
2012-08-19 15:41:56 +00:00
|
|
|
#include "DNA_sequence_types.h"
|
2015-12-28 11:55:14 +01:00
|
|
|
#include "DNA_scene_types.h"
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
#include "BKE_colortools.h"
|
|
|
|
#include "BKE_sequencer.h"
|
|
|
|
|
|
|
|
#include "IMB_imbuf.h"
|
|
|
|
#include "IMB_imbuf_types.h"
|
2015-12-28 11:55:14 +01:00
|
|
|
#include "IMB_colormanagement.h"
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
static SequenceModifierTypeInfo *modifiersTypes[NUM_SEQUENCE_MODIFIER_TYPES];
|
2014-03-20 15:45:20 +06:00
|
|
|
static bool modifierTypesInit = false;
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
/*********************** Modifiers *************************/
|
|
|
|
|
|
|
|
typedef void (*modifier_apply_threaded_cb) (int width, int height, unsigned char *rect, float *rect_float,
|
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *data_v);
|
|
|
|
|
|
|
|
typedef struct ModifierInitData {
|
|
|
|
ImBuf *ibuf;
|
|
|
|
ImBuf *mask;
|
|
|
|
void *user_data;
|
|
|
|
|
|
|
|
modifier_apply_threaded_cb apply_callback;
|
|
|
|
} ModifierInitData;
|
|
|
|
|
|
|
|
typedef struct ModifierThread {
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
unsigned char *rect, *mask_rect;
|
|
|
|
float *rect_float, *mask_rect_float;
|
|
|
|
|
|
|
|
void *user_data;
|
|
|
|
|
|
|
|
modifier_apply_threaded_cb apply_callback;
|
|
|
|
} ModifierThread;
|
|
|
|
|
|
|
|
|
2015-03-20 12:39:25 +01:00
|
|
|
static ImBuf *modifier_mask_get(SequenceModifierData *smd, const SeqRenderData *context, int cfra, int fra_offset, bool make_float)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
2015-03-20 12:39:25 +01:00
|
|
|
return BKE_sequencer_render_mask_input(context, smd->mask_input_type, smd->mask_sequence, smd->mask_id, cfra, fra_offset, make_float);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void modifier_init_handle(void *handle_v, int start_line, int tot_line, void *init_data_v)
|
|
|
|
{
|
|
|
|
ModifierThread *handle = (ModifierThread *) handle_v;
|
|
|
|
ModifierInitData *init_data = (ModifierInitData *) init_data_v;
|
|
|
|
ImBuf *ibuf = init_data->ibuf;
|
|
|
|
ImBuf *mask = init_data->mask;
|
|
|
|
|
|
|
|
int offset = 4 * start_line * ibuf->x;
|
|
|
|
|
|
|
|
memset(handle, 0, sizeof(ModifierThread));
|
|
|
|
|
|
|
|
handle->width = ibuf->x;
|
|
|
|
handle->height = tot_line;
|
|
|
|
handle->apply_callback = init_data->apply_callback;
|
|
|
|
handle->user_data = init_data->user_data;
|
|
|
|
|
|
|
|
if (ibuf->rect)
|
|
|
|
handle->rect = (unsigned char *) ibuf->rect + offset;
|
|
|
|
|
|
|
|
if (ibuf->rect_float)
|
|
|
|
handle->rect_float = ibuf->rect_float + offset;
|
|
|
|
|
|
|
|
if (mask) {
|
|
|
|
if (mask->rect)
|
|
|
|
handle->mask_rect = (unsigned char *) mask->rect + offset;
|
|
|
|
|
|
|
|
if (mask->rect_float)
|
|
|
|
handle->mask_rect_float = mask->rect_float + offset;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
handle->mask_rect = NULL;
|
|
|
|
handle->mask_rect_float = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *modifier_do_thread(void *thread_data_v)
|
|
|
|
{
|
|
|
|
ModifierThread *td = (ModifierThread *) thread_data_v;
|
|
|
|
|
|
|
|
td->apply_callback(td->width, td->height, td->rect, td->rect_float, td->mask_rect, td->mask_rect_float, td->user_data);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void modifier_apply_threaded(ImBuf *ibuf, ImBuf *mask, modifier_apply_threaded_cb apply_callback, void *user_data)
|
|
|
|
{
|
|
|
|
ModifierInitData init_data;
|
|
|
|
|
|
|
|
init_data.ibuf = ibuf;
|
|
|
|
init_data.mask = mask;
|
|
|
|
init_data.user_data = user_data;
|
|
|
|
|
|
|
|
init_data.apply_callback = apply_callback;
|
|
|
|
|
|
|
|
IMB_processor_apply_threaded(ibuf->y, sizeof(ModifierThread), &init_data,
|
2013-02-04 00:18:09 +00:00
|
|
|
modifier_init_handle, modifier_do_thread);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* **** Color Balance Modifier **** */
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void colorBalance_init_data(SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
ColorBalanceModifierData *cbmd = (ColorBalanceModifierData *) smd;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
cbmd->color_multiply = 1.0f;
|
|
|
|
|
|
|
|
for (c = 0; c < 3; c++) {
|
|
|
|
cbmd->color_balance.lift[c] = 1.0f;
|
|
|
|
cbmd->color_balance.gamma[c] = 1.0f;
|
|
|
|
cbmd->color_balance.gain[c] = 1.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void colorBalance_apply(SequenceModifierData *smd, ImBuf *ibuf, ImBuf *mask)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
ColorBalanceModifierData *cbmd = (ColorBalanceModifierData *) smd;
|
|
|
|
|
2014-03-20 15:45:20 +06:00
|
|
|
BKE_sequencer_color_balance_apply(&cbmd->color_balance, ibuf, cbmd->color_multiply, false, mask);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_ColorBalance = {
|
2015-08-16 17:32:01 +10:00
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Color Balance"), /* name */
|
2013-03-25 08:29:06 +00:00
|
|
|
"ColorBalanceModifierData", /* struct_name */
|
|
|
|
sizeof(ColorBalanceModifierData), /* struct_size */
|
|
|
|
colorBalance_init_data, /* init_data */
|
|
|
|
NULL, /* free_data */
|
|
|
|
NULL, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
colorBalance_apply, /* apply */
|
2012-08-19 15:41:56 +00:00
|
|
|
};
|
|
|
|
|
2015-12-28 11:55:14 +01:00
|
|
|
/* **** White Balance Modifier **** */
|
|
|
|
|
|
|
|
static void whiteBalance_init_data(SequenceModifierData *smd)
|
|
|
|
{
|
|
|
|
WhiteBalanceModifierData *cbmd = (WhiteBalanceModifierData *) smd;
|
|
|
|
copy_v3_fl(cbmd->white_value, 1.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct WhiteBalanceThreadData {
|
|
|
|
float white[3];
|
|
|
|
} WhiteBalanceThreadData;
|
|
|
|
|
|
|
|
static void whiteBalance_apply_threaded(int width, int height, unsigned char *rect, float *rect_float,
|
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *data_v)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
float multiplier[3];
|
|
|
|
|
|
|
|
WhiteBalanceThreadData *data = (WhiteBalanceThreadData *) data_v;
|
|
|
|
|
2016-02-23 14:50:30 +11:00
|
|
|
multiplier[0] = (data->white[0] != 0.0f) ? 1.0f / data->white[0] : FLT_MAX;
|
|
|
|
multiplier[1] = (data->white[1] != 0.0f) ? 1.0f / data->white[1] : FLT_MAX;
|
|
|
|
multiplier[2] = (data->white[2] != 0.0f) ? 1.0f / data->white[2] : FLT_MAX;
|
2015-12-28 11:55:14 +01:00
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
2017-05-19 11:29:18 +02:00
|
|
|
float rgba[4], result[4], mask[3] = {1.0f, 1.0f, 1.0f};
|
2015-12-28 11:55:14 +01:00
|
|
|
|
2015-12-29 01:08:13 +11:00
|
|
|
if (rect_float) {
|
2017-05-19 11:29:18 +02:00
|
|
|
copy_v3_v3(rgba, rect_float + pixel_index);
|
2015-12-29 01:08:13 +11:00
|
|
|
}
|
|
|
|
else {
|
2017-05-19 11:29:18 +02:00
|
|
|
straight_uchar_to_premul_float(rgba, rect + pixel_index);
|
2015-12-28 11:55:14 +01:00
|
|
|
}
|
|
|
|
|
2017-05-19 11:29:18 +02:00
|
|
|
copy_v4_v4(result, rgba);
|
2018-10-19 09:07:40 +11:00
|
|
|
#if 0
|
|
|
|
mul_v3_v3(result, multiplier);
|
|
|
|
#else
|
2016-02-23 14:50:30 +11:00
|
|
|
/* similar to division without the clipping */
|
|
|
|
for (int i = 0; i < 3; i++) {
|
2017-05-19 11:29:18 +02:00
|
|
|
result[i] = 1.0f - powf(1.0f - rgba[i], multiplier[i]);
|
2016-02-23 14:50:30 +11:00
|
|
|
}
|
2018-10-19 09:07:40 +11:00
|
|
|
#endif
|
2015-12-28 11:55:14 +01:00
|
|
|
|
2016-01-11 14:59:18 +11:00
|
|
|
if (mask_rect_float) {
|
2015-12-28 11:55:14 +01:00
|
|
|
copy_v3_v3(mask, mask_rect_float + pixel_index);
|
2016-01-11 14:59:18 +11:00
|
|
|
}
|
|
|
|
else if (mask_rect) {
|
2015-12-28 11:55:14 +01:00
|
|
|
rgb_uchar_to_float(mask, mask_rect + pixel_index);
|
2016-01-11 14:59:18 +11:00
|
|
|
}
|
2015-12-28 11:55:14 +01:00
|
|
|
|
2017-05-19 11:29:18 +02:00
|
|
|
result[0] = rgba[0] * (1.0f - mask[0]) + result[0] * mask[0];
|
|
|
|
result[1] = rgba[1] * (1.0f - mask[1]) + result[1] * mask[1];
|
|
|
|
result[2] = rgba[2] * (1.0f - mask[2]) + result[2] * mask[2];
|
2015-12-28 11:55:14 +01:00
|
|
|
|
2016-01-11 14:59:18 +11:00
|
|
|
if (rect_float) {
|
2015-12-28 11:55:14 +01:00
|
|
|
copy_v3_v3(rect_float + pixel_index, result);
|
2016-01-11 14:59:18 +11:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
premul_float_to_straight_uchar(rect + pixel_index, result);
|
|
|
|
}
|
2015-12-29 01:08:13 +11:00
|
|
|
}
|
2015-12-28 11:55:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void whiteBalance_apply(SequenceModifierData *smd, ImBuf *ibuf, ImBuf *mask)
|
|
|
|
{
|
|
|
|
WhiteBalanceThreadData data;
|
|
|
|
WhiteBalanceModifierData *wbmd = (WhiteBalanceModifierData *) smd;
|
|
|
|
|
|
|
|
copy_v3_v3(data.white, wbmd->white_value);
|
|
|
|
|
|
|
|
modifier_apply_threaded(ibuf, mask, whiteBalance_apply_threaded, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_WhiteBalance = {
|
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "White Balance"), /* name */
|
|
|
|
"WhiteBalanceModifierData", /* struct_name */
|
|
|
|
sizeof(WhiteBalanceModifierData), /* struct_size */
|
|
|
|
whiteBalance_init_data, /* init_data */
|
|
|
|
NULL, /* free_data */
|
|
|
|
NULL, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
whiteBalance_apply, /* apply */
|
2015-12-28 11:55:14 +01:00
|
|
|
};
|
|
|
|
|
2012-08-19 15:41:56 +00:00
|
|
|
/* **** Curves Modifier **** */
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void curves_init_data(SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
CurvesModifierData *cmd = (CurvesModifierData *) smd;
|
|
|
|
|
|
|
|
curvemapping_set_defaults(&cmd->curve_mapping, 4, 0.0f, 0.0f, 1.0f, 1.0f);
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void curves_free_data(SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
CurvesModifierData *cmd = (CurvesModifierData *) smd;
|
|
|
|
|
|
|
|
curvemapping_free_data(&cmd->curve_mapping);
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void curves_copy_data(SequenceModifierData *target, SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
CurvesModifierData *cmd = (CurvesModifierData *) smd;
|
|
|
|
CurvesModifierData *cmd_target = (CurvesModifierData *) target;
|
|
|
|
|
|
|
|
curvemapping_copy_data(&cmd_target->curve_mapping, &cmd->curve_mapping);
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void curves_apply_threaded(int width, int height, unsigned char *rect, float *rect_float,
|
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *data_v)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
CurveMapping *curve_mapping = (CurveMapping *) data_v;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
|
|
|
|
if (rect_float) {
|
|
|
|
float *pixel = rect_float + pixel_index;
|
|
|
|
float result[3];
|
|
|
|
|
|
|
|
curvemapping_evaluate_premulRGBF(curve_mapping, result, pixel);
|
|
|
|
|
|
|
|
if (mask_rect_float) {
|
2014-04-27 00:20:13 +10:00
|
|
|
const float *m = mask_rect_float + pixel_index;
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
pixel[0] = pixel[0] * (1.0f - m[0]) + result[0] * m[0];
|
|
|
|
pixel[1] = pixel[1] * (1.0f - m[1]) + result[1] * m[1];
|
|
|
|
pixel[2] = pixel[2] * (1.0f - m[2]) + result[2] * m[2];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pixel[0] = result[0];
|
|
|
|
pixel[1] = result[1];
|
|
|
|
pixel[2] = result[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rect) {
|
|
|
|
unsigned char *pixel = rect + pixel_index;
|
2012-12-31 13:52:13 +00:00
|
|
|
float result[3], tempc[4];
|
2012-08-19 15:41:56 +00:00
|
|
|
|
2012-12-31 13:52:13 +00:00
|
|
|
straight_uchar_to_premul_float(tempc, pixel);
|
|
|
|
|
|
|
|
curvemapping_evaluate_premulRGBF(curve_mapping, result, tempc);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
if (mask_rect) {
|
|
|
|
float t[3];
|
|
|
|
|
|
|
|
rgb_uchar_to_float(t, mask_rect + pixel_index);
|
|
|
|
|
2013-02-27 09:58:40 +00:00
|
|
|
tempc[0] = tempc[0] * (1.0f - t[0]) + result[0] * t[0];
|
|
|
|
tempc[1] = tempc[1] * (1.0f - t[1]) + result[1] * t[1];
|
|
|
|
tempc[2] = tempc[2] * (1.0f - t[2]) + result[2] * t[2];
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-12-31 13:52:13 +00:00
|
|
|
tempc[0] = result[0];
|
|
|
|
tempc[1] = result[1];
|
|
|
|
tempc[2] = result[2];
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
2012-12-31 13:52:13 +00:00
|
|
|
|
|
|
|
premul_float_to_straight_uchar(pixel, tempc);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void curves_apply(struct SequenceModifierData *smd, ImBuf *ibuf, ImBuf *mask)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
CurvesModifierData *cmd = (CurvesModifierData *) smd;
|
|
|
|
|
|
|
|
float black[3] = {0.0f, 0.0f, 0.0f};
|
|
|
|
float white[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
|
|
|
|
curvemapping_initialize(&cmd->curve_mapping);
|
|
|
|
|
|
|
|
curvemapping_premultiply(&cmd->curve_mapping, 0);
|
|
|
|
curvemapping_set_black_white(&cmd->curve_mapping, black, white);
|
|
|
|
|
2012-09-04 16:55:12 +00:00
|
|
|
modifier_apply_threaded(ibuf, mask, curves_apply_threaded, &cmd->curve_mapping);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
curvemapping_premultiply(&cmd->curve_mapping, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_Curves = {
|
2015-08-16 17:32:01 +10:00
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Curves"), /* name */
|
2013-03-25 08:29:06 +00:00
|
|
|
"CurvesModifierData", /* struct_name */
|
|
|
|
sizeof(CurvesModifierData), /* struct_size */
|
|
|
|
curves_init_data, /* init_data */
|
|
|
|
curves_free_data, /* free_data */
|
|
|
|
curves_copy_data, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
curves_apply, /* apply */
|
2012-08-19 15:41:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* **** Hue Correct Modifier **** */
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void hue_correct_init_data(SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
HueCorrectModifierData *hcmd = (HueCorrectModifierData *) smd;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
curvemapping_set_defaults(&hcmd->curve_mapping, 1, 0.0f, 0.0f, 1.0f, 1.0f);
|
|
|
|
hcmd->curve_mapping.preset = CURVE_PRESET_MID9;
|
|
|
|
|
|
|
|
for (c = 0; c < 3; c++) {
|
|
|
|
CurveMap *cuma = &hcmd->curve_mapping.cm[c];
|
|
|
|
|
|
|
|
curvemap_reset(cuma, &hcmd->curve_mapping.clipr, hcmd->curve_mapping.preset, CURVEMAP_SLOPE_POSITIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* default to showing Saturation */
|
|
|
|
hcmd->curve_mapping.cur = 1;
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void hue_correct_free_data(SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
HueCorrectModifierData *hcmd = (HueCorrectModifierData *) smd;
|
|
|
|
|
|
|
|
curvemapping_free_data(&hcmd->curve_mapping);
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void hue_correct_copy_data(SequenceModifierData *target, SequenceModifierData *smd)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
HueCorrectModifierData *hcmd = (HueCorrectModifierData *) smd;
|
|
|
|
HueCorrectModifierData *hcmd_target = (HueCorrectModifierData *) target;
|
|
|
|
|
|
|
|
curvemapping_copy_data(&hcmd_target->curve_mapping, &hcmd->curve_mapping);
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void hue_correct_apply_threaded(int width, int height, unsigned char *rect, float *rect_float,
|
2012-08-19 15:41:56 +00:00
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *data_v)
|
|
|
|
{
|
|
|
|
CurveMapping *curve_mapping = (CurveMapping *) data_v;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
float pixel[3], result[3], mask[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
float hsv[3], f;
|
|
|
|
|
|
|
|
if (rect_float)
|
|
|
|
copy_v3_v3(pixel, rect_float + pixel_index);
|
|
|
|
else
|
|
|
|
rgb_uchar_to_float(pixel, rect + pixel_index);
|
|
|
|
|
|
|
|
rgb_to_hsv(pixel[0], pixel[1], pixel[2], hsv, hsv + 1, hsv + 2);
|
|
|
|
|
|
|
|
/* adjust hue, scaling returned default 0.5 up to 1 */
|
|
|
|
f = curvemapping_evaluateF(curve_mapping, 0, hsv[0]);
|
|
|
|
hsv[0] += f - 0.5f;
|
|
|
|
|
|
|
|
/* adjust saturation, scaling returned default 0.5 up to 1 */
|
|
|
|
f = curvemapping_evaluateF(curve_mapping, 1, hsv[0]);
|
|
|
|
hsv[1] *= (f * 2.0f);
|
|
|
|
|
|
|
|
/* adjust value, scaling returned default 0.5 up to 1 */
|
|
|
|
f = curvemapping_evaluateF(curve_mapping, 2, hsv[0]);
|
|
|
|
hsv[2] *= (f * 2.f);
|
|
|
|
|
|
|
|
hsv[0] = hsv[0] - floorf(hsv[0]); /* mod 1.0 */
|
|
|
|
CLAMP(hsv[1], 0.0f, 1.0f);
|
|
|
|
|
|
|
|
/* convert back to rgb */
|
|
|
|
hsv_to_rgb(hsv[0], hsv[1], hsv[2], result, result + 1, result + 2);
|
|
|
|
|
|
|
|
if (mask_rect_float)
|
2012-11-09 09:33:28 +00:00
|
|
|
copy_v3_v3(mask, mask_rect_float + pixel_index);
|
2012-08-19 15:41:56 +00:00
|
|
|
else if (mask_rect)
|
2012-11-09 09:33:28 +00:00
|
|
|
rgb_uchar_to_float(mask, mask_rect + pixel_index);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
result[0] = pixel[0] * (1.0f - mask[0]) + result[0] * mask[0];
|
|
|
|
result[1] = pixel[1] * (1.0f - mask[1]) + result[1] * mask[1];
|
|
|
|
result[2] = pixel[2] * (1.0f - mask[2]) + result[2] * mask[2];
|
|
|
|
|
|
|
|
if (rect_float)
|
|
|
|
copy_v3_v3(rect_float + pixel_index, result);
|
|
|
|
else
|
|
|
|
rgb_float_to_uchar(rect + pixel_index, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void hue_correct_apply(struct SequenceModifierData *smd, ImBuf *ibuf, ImBuf *mask)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
HueCorrectModifierData *hcmd = (HueCorrectModifierData *) smd;
|
|
|
|
|
|
|
|
curvemapping_initialize(&hcmd->curve_mapping);
|
|
|
|
|
2012-09-04 16:55:12 +00:00
|
|
|
modifier_apply_threaded(ibuf, mask, hue_correct_apply_threaded, &hcmd->curve_mapping);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_HueCorrect = {
|
2015-08-16 17:32:01 +10:00
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Hue Correct"), /* name */
|
2013-03-25 08:29:06 +00:00
|
|
|
"HueCorrectModifierData", /* struct_name */
|
|
|
|
sizeof(HueCorrectModifierData), /* struct_size */
|
|
|
|
hue_correct_init_data, /* init_data */
|
|
|
|
hue_correct_free_data, /* free_data */
|
|
|
|
hue_correct_copy_data, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
hue_correct_apply, /* apply */
|
2012-08-19 15:41:56 +00:00
|
|
|
};
|
|
|
|
|
2012-08-24 09:07:04 +00:00
|
|
|
/* **** Bright/Contrast Modifier **** */
|
|
|
|
|
|
|
|
typedef struct BrightContrastThreadData {
|
|
|
|
float bright;
|
|
|
|
float contrast;
|
|
|
|
} BrightContrastThreadData;
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void brightcontrast_apply_threaded(int width, int height, unsigned char *rect, float *rect_float,
|
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *data_v)
|
2012-08-24 09:07:04 +00:00
|
|
|
{
|
|
|
|
BrightContrastThreadData *data = (BrightContrastThreadData *) data_v;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
float i;
|
|
|
|
int c;
|
|
|
|
float a, b, v;
|
|
|
|
float brightness = data->bright / 100.0f;
|
|
|
|
float contrast = data->contrast;
|
|
|
|
float delta = contrast / 200.0f;
|
|
|
|
|
|
|
|
a = 1.0f - delta * 2.0f;
|
|
|
|
/*
|
|
|
|
* The algorithm is by Werner D. Streidt
|
|
|
|
* (http://visca.com/ffactory/archives/5-99/msg00021.html)
|
|
|
|
* Extracted of OpenCV demhist.c
|
|
|
|
*/
|
|
|
|
if (contrast > 0) {
|
|
|
|
a = 1.0f / a;
|
|
|
|
b = a * (brightness - delta);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
delta *= -1;
|
|
|
|
b = a * (brightness + delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
|
|
|
|
if (rect) {
|
|
|
|
unsigned char *pixel = rect + pixel_index;
|
|
|
|
|
|
|
|
for (c = 0; c < 3; c++) {
|
2012-11-30 13:42:52 +00:00
|
|
|
i = (float) pixel[c] / 255.0f;
|
2012-08-24 09:07:04 +00:00
|
|
|
v = a * i + b;
|
|
|
|
|
|
|
|
if (mask_rect) {
|
|
|
|
unsigned char *m = mask_rect + pixel_index;
|
|
|
|
float t = (float) m[c] / 255.0f;
|
|
|
|
|
2013-02-27 09:58:40 +00:00
|
|
|
v = (float) pixel[c] / 255.0f * (1.0f - t) + v * t;
|
2012-08-24 09:07:04 +00:00
|
|
|
}
|
2012-11-30 13:42:52 +00:00
|
|
|
|
2018-05-07 17:31:28 +02:00
|
|
|
pixel[c] = unit_float_to_uchar_clamp(v);
|
2012-08-24 09:07:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (rect_float) {
|
|
|
|
float *pixel = rect_float + pixel_index;
|
|
|
|
|
|
|
|
for (c = 0; c < 3; c++) {
|
|
|
|
i = pixel[c];
|
|
|
|
v = a * i + b;
|
|
|
|
|
|
|
|
if (mask_rect_float) {
|
2014-04-27 00:20:13 +10:00
|
|
|
const float *m = mask_rect_float + pixel_index;
|
2012-08-24 09:07:04 +00:00
|
|
|
|
|
|
|
pixel[c] = pixel[c] * (1.0f - m[c]) + v * m[c];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pixel[c] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-15 01:52:28 +00:00
|
|
|
static void brightcontrast_apply(struct SequenceModifierData *smd, ImBuf *ibuf, ImBuf *mask)
|
2012-08-24 09:07:04 +00:00
|
|
|
{
|
|
|
|
BrightContrastModifierData *bcmd = (BrightContrastModifierData *) smd;
|
|
|
|
BrightContrastThreadData data;
|
|
|
|
|
|
|
|
data.bright = bcmd->bright;
|
|
|
|
data.contrast = bcmd->contrast;
|
|
|
|
|
2012-09-04 16:55:12 +00:00
|
|
|
modifier_apply_threaded(ibuf, mask, brightcontrast_apply_threaded, &data);
|
2012-08-24 09:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_BrightContrast = {
|
2015-08-16 17:32:01 +10:00
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Bright/Contrast"), /* name */
|
2013-03-25 08:29:06 +00:00
|
|
|
"BrightContrastModifierData", /* struct_name */
|
|
|
|
sizeof(BrightContrastModifierData), /* struct_size */
|
|
|
|
NULL, /* init_data */
|
|
|
|
NULL, /* free_data */
|
|
|
|
NULL, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
brightcontrast_apply, /* apply */
|
2012-08-24 09:07:04 +00:00
|
|
|
};
|
|
|
|
|
2013-05-08 14:20:57 +00:00
|
|
|
/* **** Mask Modifier **** */
|
|
|
|
|
|
|
|
static void maskmodifier_apply_threaded(int width, int height, unsigned char *rect, float *rect_float,
|
|
|
|
unsigned char *mask_rect, float *mask_rect_float, void *UNUSED(data_v))
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
if (rect && !mask_rect)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (rect_float && !mask_rect_float)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
|
|
|
|
if (rect) {
|
|
|
|
unsigned char *pixel = rect + pixel_index;
|
|
|
|
unsigned char *mask_pixel = mask_rect + pixel_index;
|
|
|
|
unsigned char mask = min_iii(mask_pixel[0], mask_pixel[1], mask_pixel[2]);
|
|
|
|
|
|
|
|
/* byte buffer is straight, so only affect on alpha itself,
|
|
|
|
* this is the only way to alpha-over byte strip after
|
|
|
|
* applying mask modifier.
|
|
|
|
*/
|
|
|
|
pixel[3] = (float)(pixel[3] * mask) / 255.0f;
|
|
|
|
}
|
|
|
|
else if (rect_float) {
|
|
|
|
int c;
|
|
|
|
float *pixel = rect_float + pixel_index;
|
2014-04-27 00:20:13 +10:00
|
|
|
const float *mask_pixel = mask_rect_float + pixel_index;
|
2013-05-08 14:20:57 +00:00
|
|
|
float mask = min_fff(mask_pixel[0], mask_pixel[1], mask_pixel[2]);
|
|
|
|
|
|
|
|
/* float buffers are premultiplied, so need to premul color
|
|
|
|
* as well to make it easy to alpha-over masted strip.
|
|
|
|
*/
|
|
|
|
for (c = 0; c < 4; c++)
|
|
|
|
pixel[c] = pixel[c] * mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-19 01:09:41 +11:00
|
|
|
static void maskmodifier_apply(struct SequenceModifierData *UNUSED(smd), ImBuf *ibuf, ImBuf *mask)
|
2013-05-08 14:20:57 +00:00
|
|
|
{
|
2015-03-19 01:09:41 +11:00
|
|
|
// SequencerMaskModifierData *bcmd = (SequencerMaskModifierData *)smd;
|
2013-05-08 14:20:57 +00:00
|
|
|
|
2015-03-19 01:09:41 +11:00
|
|
|
modifier_apply_threaded(ibuf, mask, maskmodifier_apply_threaded, NULL);
|
2013-05-08 14:20:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_Mask = {
|
2015-08-16 17:32:01 +10:00
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Mask"), /* name */
|
2013-05-08 14:20:57 +00:00
|
|
|
"SequencerMaskModifierData", /* struct_name */
|
|
|
|
sizeof(SequencerMaskModifierData), /* struct_size */
|
|
|
|
NULL, /* init_data */
|
|
|
|
NULL, /* free_data */
|
|
|
|
NULL, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
maskmodifier_apply, /* apply */
|
2013-05-08 14:20:57 +00:00
|
|
|
};
|
|
|
|
|
2016-01-19 15:53:43 +01:00
|
|
|
/* **** Tonemap Modifier **** */
|
|
|
|
|
|
|
|
typedef struct AvgLogLum {
|
|
|
|
SequencerTonemapModifierData *tmmd;
|
|
|
|
struct ColorSpace *colorspace;
|
|
|
|
float al;
|
|
|
|
float auto_key;
|
|
|
|
float lav;
|
|
|
|
float cav[4];
|
|
|
|
float igm;
|
|
|
|
} AvgLogLum;
|
|
|
|
|
|
|
|
static void tonemapmodifier_init_data(SequenceModifierData *smd)
|
|
|
|
{
|
|
|
|
SequencerTonemapModifierData *tmmd = (SequencerTonemapModifierData *) smd;
|
|
|
|
/* Same as tonemap compositor node. */
|
|
|
|
tmmd->type = SEQ_TONEMAP_RD_PHOTORECEPTOR;
|
|
|
|
tmmd->key = 0.18f;
|
|
|
|
tmmd->offset = 1.0f;
|
|
|
|
tmmd->gamma = 1.0f;
|
|
|
|
tmmd->intensity = 0.0f;
|
|
|
|
tmmd->contrast = 0.0f;
|
|
|
|
tmmd->adaptation = 1.0f;
|
|
|
|
tmmd->correction = 0.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tonemapmodifier_apply_threaded_simple(int width,
|
|
|
|
int height,
|
|
|
|
unsigned char *rect,
|
|
|
|
float *rect_float,
|
|
|
|
unsigned char *mask_rect,
|
|
|
|
float *mask_rect_float,
|
|
|
|
void *data_v)
|
|
|
|
{
|
|
|
|
AvgLogLum *avg = (AvgLogLum *)data_v;
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
float input[4], output[4], mask[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
/* Get input value. */
|
|
|
|
if (rect_float) {
|
|
|
|
copy_v4_v4(input, &rect_float[pixel_index]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
straight_uchar_to_premul_float(input, &rect[pixel_index]);
|
|
|
|
}
|
|
|
|
IMB_colormanagement_colorspace_to_scene_linear_v3(input, avg->colorspace);
|
|
|
|
copy_v4_v4(output, input);
|
|
|
|
/* Get mask value. */
|
|
|
|
if (mask_rect_float) {
|
|
|
|
copy_v3_v3(mask, mask_rect_float + pixel_index);
|
|
|
|
}
|
|
|
|
else if (mask_rect) {
|
|
|
|
rgb_uchar_to_float(mask, mask_rect + pixel_index);
|
|
|
|
}
|
|
|
|
/* Apply correction. */
|
|
|
|
mul_v3_fl(output, avg->al);
|
|
|
|
float dr = output[0] + avg->tmmd->offset;
|
|
|
|
float dg = output[1] + avg->tmmd->offset;
|
|
|
|
float db = output[2] + avg->tmmd->offset;
|
|
|
|
output[0] /= ((dr == 0.0f) ? 1.0f : dr);
|
|
|
|
output[1] /= ((dg == 0.0f) ? 1.0f : dg);
|
|
|
|
output[2] /= ((db == 0.0f) ? 1.0f : db);
|
|
|
|
const float igm = avg->igm;
|
|
|
|
if (igm != 0.0f) {
|
|
|
|
output[0] = powf(max_ff(output[0], 0.0f), igm);
|
|
|
|
output[1] = powf(max_ff(output[1], 0.0f), igm);
|
|
|
|
output[2] = powf(max_ff(output[2], 0.0f), igm);
|
|
|
|
}
|
|
|
|
/* Apply mask. */
|
|
|
|
output[0] = input[0] * (1.0f - mask[0]) + output[0] * mask[0];
|
|
|
|
output[1] = input[1] * (1.0f - mask[1]) + output[1] * mask[1];
|
|
|
|
output[2] = input[2] * (1.0f - mask[2]) + output[2] * mask[2];
|
|
|
|
/* Copy result back. */
|
|
|
|
IMB_colormanagement_scene_linear_to_colorspace_v3(output, avg->colorspace);
|
|
|
|
if (rect_float) {
|
|
|
|
copy_v4_v4(&rect_float[pixel_index], output);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
premul_float_to_straight_uchar(&rect[pixel_index], output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tonemapmodifier_apply_threaded_photoreceptor(int width,
|
|
|
|
int height,
|
|
|
|
unsigned char *rect,
|
|
|
|
float *rect_float,
|
|
|
|
unsigned char *mask_rect,
|
|
|
|
float *mask_rect_float,
|
|
|
|
void *data_v)
|
|
|
|
{
|
|
|
|
AvgLogLum *avg = (AvgLogLum *)data_v;
|
|
|
|
const float f = expf(-avg->tmmd->intensity);
|
|
|
|
const float m = (avg->tmmd->contrast > 0.0f) ? avg->tmmd->contrast : (0.3f + 0.7f * powf(avg->auto_key, 1.4f));
|
|
|
|
const float ic = 1.0f - avg->tmmd->correction, ia = 1.0f - avg->tmmd->adaptation;
|
|
|
|
for (int y = 0; y < height; y++) {
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
|
|
int pixel_index = (y * width + x) * 4;
|
|
|
|
float input[4], output[4], mask[3] = {1.0f, 1.0f, 1.0f};
|
|
|
|
/* Get input value. */
|
|
|
|
if (rect_float) {
|
|
|
|
copy_v4_v4(input, &rect_float[pixel_index]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
straight_uchar_to_premul_float(input, &rect[pixel_index]);
|
|
|
|
}
|
|
|
|
IMB_colormanagement_colorspace_to_scene_linear_v3(input, avg->colorspace);
|
|
|
|
copy_v4_v4(output, input);
|
|
|
|
/* Get mask value. */
|
|
|
|
if (mask_rect_float) {
|
|
|
|
copy_v3_v3(mask, mask_rect_float + pixel_index);
|
|
|
|
}
|
|
|
|
else if (mask_rect) {
|
|
|
|
rgb_uchar_to_float(mask, mask_rect + pixel_index);
|
|
|
|
}
|
|
|
|
/* Apply correction. */
|
|
|
|
const float L = IMB_colormanagement_get_luminance(output);
|
|
|
|
float I_l = output[0] + ic * (L - output[0]);
|
|
|
|
float I_g = avg->cav[0] + ic * (avg->lav - avg->cav[0]);
|
|
|
|
float I_a = I_l + ia * (I_g - I_l);
|
|
|
|
output[0] /= (output[0] + powf(f * I_a, m));
|
|
|
|
I_l = output[1] + ic * (L - output[1]);
|
|
|
|
I_g = avg->cav[1] + ic * (avg->lav - avg->cav[1]);
|
|
|
|
I_a = I_l + ia * (I_g - I_l);
|
|
|
|
output[1] /= (output[1] + powf(f * I_a, m));
|
|
|
|
I_l = output[2] + ic * (L - output[2]);
|
|
|
|
I_g = avg->cav[2] + ic * (avg->lav - avg->cav[2]);
|
|
|
|
I_a = I_l + ia * (I_g - I_l);
|
|
|
|
output[2] /= (output[2] + powf(f * I_a, m));
|
|
|
|
/* Apply mask. */
|
|
|
|
output[0] = input[0] * (1.0f - mask[0]) + output[0] * mask[0];
|
|
|
|
output[1] = input[1] * (1.0f - mask[1]) + output[1] * mask[1];
|
|
|
|
output[2] = input[2] * (1.0f - mask[2]) + output[2] * mask[2];
|
|
|
|
/* Copy result back. */
|
|
|
|
IMB_colormanagement_scene_linear_to_colorspace_v3(output, avg->colorspace);
|
|
|
|
if (rect_float) {
|
|
|
|
copy_v4_v4(&rect_float[pixel_index], output);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
premul_float_to_straight_uchar(&rect[pixel_index], output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tonemapmodifier_apply(struct SequenceModifierData *smd,
|
|
|
|
ImBuf *ibuf,
|
|
|
|
ImBuf *mask)
|
|
|
|
{
|
|
|
|
SequencerTonemapModifierData *tmmd = (SequencerTonemapModifierData *) smd;
|
|
|
|
AvgLogLum data;
|
|
|
|
data.tmmd = tmmd;
|
|
|
|
data.colorspace = (ibuf->rect_float != NULL)
|
|
|
|
? ibuf->float_colorspace
|
|
|
|
: ibuf->rect_colorspace;
|
|
|
|
float lsum = 0.0f;
|
|
|
|
int p = ibuf->x * ibuf->y;
|
|
|
|
float *fp = ibuf->rect_float;
|
|
|
|
unsigned char *cp = (unsigned char *)ibuf->rect;
|
|
|
|
float avl, maxl = -FLT_MAX, minl = FLT_MAX;
|
|
|
|
const float sc = 1.0f / p;
|
|
|
|
float Lav = 0.f;
|
|
|
|
float cav[4] = {0.0f, 0.0f, 0.0f, 0.0f};
|
|
|
|
while (p--) {
|
|
|
|
float pixel[4];
|
|
|
|
if (fp != NULL) {
|
|
|
|
copy_v4_v4(pixel, fp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
straight_uchar_to_premul_float(pixel, cp);
|
|
|
|
}
|
|
|
|
IMB_colormanagement_colorspace_to_scene_linear_v3(pixel, data.colorspace);
|
|
|
|
float L = IMB_colormanagement_get_luminance(pixel);
|
|
|
|
Lav += L;
|
|
|
|
add_v3_v3(cav, pixel);
|
|
|
|
lsum += logf(max_ff(L, 0.0f) + 1e-5f);
|
|
|
|
maxl = (L > maxl) ? L : maxl;
|
|
|
|
minl = (L < minl) ? L : minl;
|
|
|
|
if (fp != NULL) {
|
|
|
|
fp += 4;
|
2016-01-24 12:13:37 +11:00
|
|
|
}
|
|
|
|
else {
|
2016-01-19 15:53:43 +01:00
|
|
|
cp += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.lav = Lav * sc;
|
|
|
|
mul_v3_v3fl(data.cav, cav, sc);
|
|
|
|
maxl = logf(maxl + 1e-5f);
|
|
|
|
minl = logf(minl + 1e-5f);
|
|
|
|
avl = lsum * sc;
|
|
|
|
data.auto_key = (maxl > minl) ? ((maxl - avl) / (maxl - minl)) : 1.0f;
|
|
|
|
float al = expf(avl);
|
|
|
|
data.al = (al == 0.0f) ? 0.0f : (tmmd->key / al);
|
|
|
|
data.igm = (tmmd->gamma == 0.0f) ? 1.0f : (1.0f / tmmd->gamma);
|
|
|
|
|
|
|
|
if (tmmd->type == SEQ_TONEMAP_RD_PHOTORECEPTOR) {
|
|
|
|
modifier_apply_threaded(ibuf,
|
|
|
|
mask,
|
|
|
|
tonemapmodifier_apply_threaded_photoreceptor,
|
|
|
|
&data);
|
|
|
|
}
|
|
|
|
else /* if (tmmd->type == SEQ_TONEMAP_RD_SIMPLE) */ {
|
|
|
|
modifier_apply_threaded(ibuf,
|
|
|
|
mask,
|
|
|
|
tonemapmodifier_apply_threaded_simple,
|
|
|
|
&data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static SequenceModifierTypeInfo seqModifier_Tonemap = {
|
|
|
|
CTX_N_(BLT_I18NCONTEXT_ID_SEQUENCE, "Tonemap"), /* name */
|
|
|
|
"SequencerTonemapModifierData", /* struct_name */
|
|
|
|
sizeof(SequencerTonemapModifierData), /* struct_size */
|
|
|
|
tonemapmodifier_init_data, /* init_data */
|
|
|
|
NULL, /* free_data */
|
|
|
|
NULL, /* copy_data */
|
2019-04-16 16:40:47 +02:00
|
|
|
tonemapmodifier_apply, /* apply */
|
2016-01-19 15:53:43 +01:00
|
|
|
};
|
|
|
|
|
2012-08-19 15:41:56 +00:00
|
|
|
/*********************** Modifier functions *************************/
|
|
|
|
|
|
|
|
static void sequence_modifier_type_info_init(void)
|
|
|
|
{
|
|
|
|
#define INIT_TYPE(typeName) (modifiersTypes[seqModifierType_##typeName] = &seqModifier_##typeName)
|
|
|
|
|
|
|
|
INIT_TYPE(ColorBalance);
|
|
|
|
INIT_TYPE(Curves);
|
|
|
|
INIT_TYPE(HueCorrect);
|
2012-08-24 09:07:04 +00:00
|
|
|
INIT_TYPE(BrightContrast);
|
2013-05-08 14:20:57 +00:00
|
|
|
INIT_TYPE(Mask);
|
2015-12-28 11:55:14 +01:00
|
|
|
INIT_TYPE(WhiteBalance);
|
2016-01-19 15:53:43 +01:00
|
|
|
INIT_TYPE(Tonemap);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
#undef INIT_TYPE
|
|
|
|
}
|
|
|
|
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *BKE_sequence_modifier_type_info_get(int type)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
if (!modifierTypesInit) {
|
|
|
|
sequence_modifier_type_info_init();
|
2014-03-20 15:45:20 +06:00
|
|
|
modifierTypesInit = true;
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return modifiersTypes[type];
|
|
|
|
}
|
|
|
|
|
2016-02-16 00:05:44 +11:00
|
|
|
SequenceModifierData *BKE_sequence_modifier_new(Sequence *seq, const char *name, int type)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
SequenceModifierData *smd;
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *smti = BKE_sequence_modifier_type_info_get(type);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
smd = MEM_callocN(smti->struct_size, "sequence modifier");
|
|
|
|
|
|
|
|
smd->type = type;
|
|
|
|
smd->flag |= SEQUENCE_MODIFIER_EXPANDED;
|
|
|
|
|
2012-08-20 10:15:32 +00:00
|
|
|
if (!name || !name[0])
|
|
|
|
BLI_strncpy(smd->name, smti->name, sizeof(smd->name));
|
|
|
|
else
|
|
|
|
BLI_strncpy(smd->name, name, sizeof(smd->name));
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
BLI_addtail(&seq->modifiers, smd);
|
|
|
|
|
|
|
|
BKE_sequence_modifier_unique_name(seq, smd);
|
|
|
|
|
|
|
|
if (smti->init_data)
|
|
|
|
smti->init_data(smd);
|
2012-08-20 10:15:32 +00:00
|
|
|
|
|
|
|
return smd;
|
|
|
|
}
|
|
|
|
|
2014-03-20 15:45:20 +06:00
|
|
|
bool BKE_sequence_modifier_remove(Sequence *seq, SequenceModifierData *smd)
|
2012-08-20 10:15:32 +00:00
|
|
|
{
|
|
|
|
if (BLI_findindex(&seq->modifiers, smd) == -1)
|
2014-03-20 15:45:20 +06:00
|
|
|
return false;
|
2012-08-20 10:15:32 +00:00
|
|
|
|
|
|
|
BLI_remlink(&seq->modifiers, smd);
|
|
|
|
BKE_sequence_modifier_free(smd);
|
|
|
|
|
2014-03-20 15:45:20 +06:00
|
|
|
return true;
|
2012-08-20 10:15:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_sequence_modifier_clear(Sequence *seq)
|
|
|
|
{
|
|
|
|
SequenceModifierData *smd, *smd_next;
|
|
|
|
|
|
|
|
for (smd = seq->modifiers.first; smd; smd = smd_next) {
|
|
|
|
smd_next = smd->next;
|
|
|
|
BKE_sequence_modifier_free(smd);
|
|
|
|
}
|
|
|
|
|
2014-02-08 06:07:10 +11:00
|
|
|
BLI_listbase_clear(&seq->modifiers);
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_sequence_modifier_free(SequenceModifierData *smd)
|
|
|
|
{
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *smti = BKE_sequence_modifier_type_info_get(smd->type);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
if (smti && smti->free_data) {
|
|
|
|
smti->free_data(smd);
|
|
|
|
}
|
|
|
|
|
|
|
|
MEM_freeN(smd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_sequence_modifier_unique_name(Sequence *seq, SequenceModifierData *smd)
|
|
|
|
{
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *smti = BKE_sequence_modifier_type_info_get(smd->type);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
2015-08-16 17:32:01 +10:00
|
|
|
BLI_uniquename(&seq->modifiers, smd, CTX_DATA_(BLT_I18NCONTEXT_ID_SEQUENCE, smti->name), '.',
|
2013-03-25 08:29:06 +00:00
|
|
|
offsetof(SequenceModifierData, name), sizeof(smd->name));
|
2012-08-19 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
2013-04-13 04:28:04 +00:00
|
|
|
SequenceModifierData *BKE_sequence_modifier_find_by_name(Sequence *seq, const char *name)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
return BLI_findstring(&(seq->modifiers), name, offsetof(SequenceModifierData, name));
|
|
|
|
}
|
|
|
|
|
2014-01-19 00:16:19 +06:00
|
|
|
ImBuf *BKE_sequence_modifier_apply_stack(const SeqRenderData *context, Sequence *seq, ImBuf *ibuf, int cfra)
|
2012-08-19 15:41:56 +00:00
|
|
|
{
|
|
|
|
SequenceModifierData *smd;
|
|
|
|
ImBuf *processed_ibuf = ibuf;
|
|
|
|
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
if (seq->modifiers.first && (seq->flag & SEQ_USE_LINEAR_MODIFIERS)) {
|
|
|
|
processed_ibuf = IMB_dupImBuf(ibuf);
|
2014-01-19 00:16:19 +06:00
|
|
|
BKE_sequencer_imbuf_from_sequencer_space(context->scene, processed_ibuf);
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-19 15:41:56 +00:00
|
|
|
for (smd = seq->modifiers.first; smd; smd = smd->next) {
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *smti = BKE_sequence_modifier_type_info_get(smd->type);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
/* could happen if modifier is being removed or not exists in current version of blender */
|
|
|
|
if (!smti)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* modifier is muted, do nothing */
|
|
|
|
if (smd->flag & SEQUENCE_MODIFIER_MUTE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (smti->apply) {
|
2016-01-25 11:16:49 +01:00
|
|
|
int frame_offset;
|
|
|
|
if (smd->mask_time == SEQUENCE_MASK_TIME_RELATIVE) {
|
|
|
|
frame_offset = seq->start;
|
|
|
|
}
|
|
|
|
else /*if (smd->mask_time == SEQUENCE_MASK_TIME_ABSOLUTE)*/ {
|
|
|
|
frame_offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImBuf *mask = modifier_mask_get(smd,
|
|
|
|
context,
|
|
|
|
cfra,
|
|
|
|
frame_offset,
|
|
|
|
ibuf->rect_float != NULL);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
if (processed_ibuf == ibuf)
|
|
|
|
processed_ibuf = IMB_dupImBuf(ibuf);
|
|
|
|
|
2012-09-04 16:55:12 +00:00
|
|
|
smti->apply(smd, processed_ibuf, mask);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
if (mask)
|
|
|
|
IMB_freeImBuf(mask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
if (seq->modifiers.first && (seq->flag & SEQ_USE_LINEAR_MODIFIERS)) {
|
2014-03-20 15:45:20 +06:00
|
|
|
BKE_sequencer_imbuf_to_sequencer_space(context->scene, processed_ibuf, false);
|
Color Management, Stage 2: Switch color pipeline to use OpenColorIO
Replace old color pipeline which was supporting linear/sRGB color spaces
only with OpenColorIO-based pipeline.
This introduces two configurable color spaces:
- Input color space for images and movie clips. This space is used to convert
images/movies from color space in which file is saved to Blender's linear
space (for float images, byte images are not internally converted, only input
space is stored for such images and used later).
This setting could be found in image/clip data block settings.
- Display color space which defines space in which particular display is working.
This settings could be found in scene's Color Management panel.
When render result is being displayed on the screen, apart from converting image
to display space, some additional conversions could happen.
This conversions are:
- View, which defines tone curve applying before display transformation.
These are different ways to view the image on the same display device.
For example it could be used to emulate film view on sRGB display.
- Exposure affects on image exposure before tone map is applied.
- Gamma is post-display gamma correction, could be used to match particular
display gamma.
- RGB curves are user-defined curves which are applying before display
transformation, could be used for different purposes.
All this settings by default are only applying on render result and does not
affect on other images. If some particular image needs to be affected by this
transformation, "View as Render" setting of image data block should be set to
truth. Movie clips are always affected by all display transformations.
This commit also introduces configurable color space in which sequencer is
working. This setting could be found in scene's Color Management panel and
it should be used if such stuff as grading needs to be done in color space
different from sRGB (i.e. when Film view on sRGB display is use, using VD16
space as sequencer's internal space would make grading working in space
which is close to the space using for display).
Some technical notes:
- Image buffer's float buffer is now always in linear space, even if it was
created from 16bit byte images.
- Space of byte buffer is stored in image buffer's rect_colorspace property.
- Profile of image buffer was removed since it's not longer meaningful.
- OpenGL and GLSL is supposed to always work in sRGB space. It is possible
to support other spaces, but it's quite large project which isn't so
much important.
- Legacy Color Management option disabled is emulated by using None display.
It could have some regressions, but there's no clear way to avoid them.
- If OpenColorIO is disabled on build time, it should make blender behaving
in the same way as previous release with color management enabled.
More details could be found at this page (more details would be added soon):
http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management
--
Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO
integration and to Brecht van Lommel for some further development and code/
usecase review!
2012-09-15 10:05:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-19 15:41:56 +00:00
|
|
|
return processed_ibuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BKE_sequence_modifier_list_copy(Sequence *seqn, Sequence *seq)
|
|
|
|
{
|
|
|
|
SequenceModifierData *smd;
|
|
|
|
|
|
|
|
for (smd = seq->modifiers.first; smd; smd = smd->next) {
|
|
|
|
SequenceModifierData *smdn;
|
2015-03-30 21:17:07 +11:00
|
|
|
const SequenceModifierTypeInfo *smti = BKE_sequence_modifier_type_info_get(smd->type);
|
2012-08-19 15:41:56 +00:00
|
|
|
|
|
|
|
smdn = MEM_dupallocN(smd);
|
|
|
|
|
|
|
|
if (smti && smti->copy_data)
|
|
|
|
smti->copy_data(smdn, smd);
|
|
|
|
|
|
|
|
smdn->next = smdn->prev = NULL;
|
|
|
|
BLI_addtail(&seqn->modifiers, smdn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int BKE_sequence_supports_modifiers(Sequence *seq)
|
|
|
|
{
|
|
|
|
return !ELEM(seq->type, SEQ_TYPE_SOUND_RAM, SEQ_TYPE_SOUND_HD);
|
|
|
|
}
|