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:
authorCampbell Barton <ideasman42@gmail.com>2008-04-25 20:09:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-25 20:09:16 +0400
commitfeb440c2cd72ef87c79d1bbf1524802d4e82fa88 (patch)
tree0815c5e89ee6c0cfd579810fb4edbd524dceae00 /source/blender/include
parentb94f3d0fcb720d81833ae0d6f27aac1bbb50d815 (diff)
added sequencer paths to bpath iterator, This needed to use get/set filename callbacks internally because the sequencer stores dir/file separately.
This means when moving large projects with many images/videos/sounds is possible with 'File, External Data, Find Missing Files'. - needed so we can put peach animatic, glrenders & testrenders on the dvd. also datatoc.c - brecht's fixes from apricot.
Diffstat (limited to 'source/blender/include')
-rw-r--r--source/blender/include/BSE_sequence.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/include/BSE_sequence.h b/source/blender/include/BSE_sequence.h
index 70ba4ad8fbd..15a9218b735 100644
--- a/source/blender/include/BSE_sequence.h
+++ b/source/blender/include/BSE_sequence.h
@@ -92,6 +92,7 @@ void update_changed_seq_and_deps(struct Sequence *seq, int len_change, int ibuf_
struct RenderResult;
void do_render_seq(struct RenderResult *rr, int cfra);
+#define SEQ_HAS_PATH(seq) (seq->type==SEQ_MOVIE || seq->type==SEQ_HD_SOUND || seq->type==SEQ_RAM_SOUND || seq->type==SEQ_IMAGE)
#endif