Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dalai@blender.org>2021-09-27 16:05:23 +0300
committerDalai Felinto <dalai@blender.org>2021-09-28 11:23:13 +0300
commita64782b1334118d1bd98c78f665e7e0bfd232076 (patch)
treef140b883ca1d2229a03e3e860877100bfe4568aa /source/blender/windowmanager/intern/wm_files.c
parent7cd43a9d2887cffa8b2c24aa0d51f1e87a70e701 (diff)
VSE: Implement sanity check for files with more channels than supported
This is a follow up to 8fecc2a8525467ee2fbbaae16ddbbc10b3050d46. This makes sure future .blend files that have more channels than the limit won't break Blender. It can be backported to LTS. This is part of https://developer.blender.org/D12645 Differential Revision: https://developer.blender.org/D12648
Diffstat (limited to 'source/blender/windowmanager/intern/wm_files.c')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index bbab3a8b326..a5ebf988edd 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -871,6 +871,14 @@ static void file_read_reports_finalize(BlendFileReadReport *bf_reports)
bf_reports->count.linked_proxies);
}
+ if (bf_reports->count.vse_strips_skipped != 0) {
+ BKE_reportf(bf_reports->reports,
+ RPT_ERROR,
+ "%d sequence strips were not read because they were in a channel larger than %d",
+ bf_reports->count.vse_strips_skipped,
+ MAXSEQ);
+ }
+
BLI_linklist_free(bf_reports->resynced_lib_overrides_libraries, NULL);
bf_reports->resynced_lib_overrides_libraries = NULL;
}