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:
authorPeter Schlaile <peter@schlaile.de>2008-03-02 17:54:45 +0300
committerPeter Schlaile <peter@schlaile.de>2008-03-02 17:54:45 +0300
commit4165ae42cced3235be79628737489b332416266b (patch)
tree1a30942948209cf7d86a20ace347629d6e677ed0 /source/blender/blenloader
parentcc2b922d012ec2d11566882d4afe9cf2104ad0bc (diff)
== Sequencer ==
Fixed a bug with ibuf caching on startstill / endstill. The new blend modes happened to force start and endstill to be rendered over and over again. This could get very annoying especially on scene strips. We therefore now cache the original start or endstill ibuf seperately and copy on demand.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 5779f6587b8..ca25f2f0cef 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3460,6 +3460,8 @@ static void direct_link_scene(FileData *fd, Scene *sce)
seq->strip->tstripdata = 0;
seq->strip->tstripdata_startstill = 0;
seq->strip->tstripdata_endstill = 0;
+ seq->strip->ibuf_startstill = 0;
+ seq->strip->ibuf_endstill = 0;
if(seq->type == SEQ_IMAGE ||
seq->type == SEQ_MOVIE ||