Skip to content

Commit

Permalink
VSE: skip non image/movie w/ proxy dir storage
Browse files Browse the repository at this point in the history
This would use uninitialized filename variable,
looked into supporting this however generating proxies currently only
works for movies.
  • Loading branch information
ideasman42 committed Feb 21, 2018
1 parent 9e70780 commit 8928d99
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/blender/blenkernel/intern/sequencer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1673,6 +1673,11 @@ static bool seq_proxy_get_fname(Editing *ed, Sequence *seq, int cfra, int render
else if (seq->type == SEQ_TYPE_IMAGE) {
fname[0] = 0;
}
else {
/* We could make a name here, except non-movie's don't generate proxies,
* cancel until other types of sequence strips are supported. */
return false;
}
BLI_path_append(dir, sizeof(dir), fname);
BLI_path_abs(name, G.main->name);
}
Expand Down

0 comments on commit 8928d99

Please sign in to comment.