Fix T46429: Movie clip is deformed by resolution multiplier when offset is added in sequence editor.

This commit is contained in:
Bastien Montagne 2015-10-17 11:32:04 +02:00
parent 2927fa4450
commit 0a2b48e3c6
Notes: blender-bot 2023-02-14 08:33:28 +01:00
Referenced by issue #46429, Movie clip is deformed by resolution multiplier when offset is added in sequence editor
1 changed files with 1 additions and 1 deletions

View File

@ -3450,7 +3450,7 @@ static ImBuf *seq_render_strip(const SeqRenderData *context, Sequence *seq, floa
float nr = give_stripelem_index(seq, cfra);
/* all effects are handled similarly with the exception of speed effect */
int type = (seq->type & SEQ_TYPE_EFFECT && seq->type != SEQ_TYPE_SPEED) ? SEQ_TYPE_EFFECT : seq->type;
bool is_preprocessed = !ELEM(type, SEQ_TYPE_IMAGE, SEQ_TYPE_MOVIE, SEQ_TYPE_SCENE);
bool is_preprocessed = !ELEM(type, SEQ_TYPE_IMAGE, SEQ_TYPE_MOVIE, SEQ_TYPE_SCENE, SEQ_TYPE_MOVIECLIP);
ibuf = BKE_sequencer_cache_get(context, seq, cfra, SEQ_STRIPELEM_IBUF);