Fix T51898: missing sequence strip color space validation on load.

This commit is contained in:
Brecht Van Lommel 2017-07-10 01:03:20 +02:00
parent ba256b32ee
commit 00f3ab2fb2
Notes: blender-bot 2023-02-14 06:51:05 +01:00
Referenced by issue #51898, Colorspace in the video sequencer is empty
1 changed files with 11 additions and 0 deletions

View File

@ -63,6 +63,7 @@
#include "BKE_context.h"
#include "BKE_image.h"
#include "BKE_main.h"
#include "BKE_sequencer.h"
#include "RNA_define.h"
@ -1112,6 +1113,7 @@ void IMB_colormanagement_check_file_config(Main *bmain)
for (scene = bmain->scene.first; scene; scene = scene->id.next) {
ColorManagedColorspaceSettings *sequencer_colorspace_settings;
/* check scene color management settings */
colormanage_check_display_settings(&scene->display_settings, "scene", default_display);
colormanage_check_view_settings(&scene->display_settings, &scene->view_settings, "scene");
@ -1122,6 +1124,15 @@ void IMB_colormanagement_check_file_config(Main *bmain)
if (sequencer_colorspace_settings->name[0] == '\0') {
BLI_strncpy(sequencer_colorspace_settings->name, global_role_default_sequencer, MAX_COLORSPACE_NAME);
}
/* check sequencer strip input color space settings */
Sequence *seq;
SEQ_BEGIN (scene->ed, seq) {
if (seq->strip) {
colormanage_check_colorspace_settings(&seq->strip->colorspace_settings, "sequencer strip");
}
}
SEQ_END
}
/* ** check input color space settings ** */