[Bf-blender-cvs] [08b063a19f2] master: Fix T53639: text sequence strips no stamped into render.

Philipp Oeser noreply at git.blender.org
Fri Dec 29 00:26:05 CET 2017


Commit: 08b063a19f21cd1bcafc9c0dff70d5ff6f0e099a
Author: Philipp Oeser
Date:   Fri Dec 29 00:10:27 2017 +0100
Branches: master
https://developer.blender.org/rB08b063a19f21cd1bcafc9c0dff70d5ff6f0e099a

Fix T53639: text sequence strips no stamped into render.

Differential Revision: https://developer.blender.org/D2977

===================================================================

M	source/blender/blenkernel/intern/sequencer.c

===================================================================

diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 5f631621dcd..b3db2080cb8 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -4484,8 +4484,10 @@ Sequence *BKE_sequencer_foreground_frame_get(Scene *scene, int frame)
 	for (seq = ed->seqbasep->first; seq; seq = seq->next) {
 		if (seq->flag & SEQ_MUTE || seq->startdisp > frame || seq->enddisp <= frame)
 			continue;
-		/* only use elements you can see - not */
-		if (ELEM(seq->type, SEQ_TYPE_IMAGE, SEQ_TYPE_META, SEQ_TYPE_SCENE, SEQ_TYPE_MOVIE, SEQ_TYPE_COLOR)) {
+		/* Only use strips that generate an image, not ones that combine
+		 * other strips or apply some effect. */
+		if (ELEM(seq->type, SEQ_TYPE_IMAGE, SEQ_TYPE_META, SEQ_TYPE_SCENE,
+		         SEQ_TYPE_MOVIE, SEQ_TYPE_COLOR, SEQ_TYPE_TEXT)) {
 			if (seq->machine > best_machine) {
 				best_seq = seq;
 				best_machine = seq->machine;



More information about the Bf-blender-cvs mailing list