Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_sequencer.h
| Show First 20 Lines • Show All 490 Lines • ▼ Show 20 Lines | |||||
| #define SEQ_LOAD_SYNC_FPS (1 << 4) | #define SEQ_LOAD_SYNC_FPS (1 << 4) | ||||
| #define SEQ_LOAD_SOUND_MONO (1 << 5) | #define SEQ_LOAD_SOUND_MONO (1 << 5) | ||||
| /* seq_dupli' flags */ | /* seq_dupli' flags */ | ||||
| #define SEQ_DUPE_UNIQUE_NAME (1 << 0) | #define SEQ_DUPE_UNIQUE_NAME (1 << 0) | ||||
| #define SEQ_DUPE_CONTEXT (1 << 1) | #define SEQ_DUPE_CONTEXT (1 << 1) | ||||
| #define SEQ_DUPE_ANIM (1 << 2) | #define SEQ_DUPE_ANIM (1 << 2) | ||||
| #define SEQ_DUPE_ALL (1 << 3) /* otherwise only selected are copied */ | #define SEQ_DUPE_ALL (1 << 3) /* otherwise only selected are copied */ | ||||
| #define SEQ_DUPE_IS_RECURSIVE_CALL (1 << 4) | |||||
| /* use as an api function */ | /* use as an api function */ | ||||
| typedef struct Sequence *(*SeqLoadFn)(struct bContext *, ListBase *, struct SeqLoadInfo *); | typedef struct Sequence *(*SeqLoadFn)(struct bContext *, ListBase *, struct SeqLoadInfo *); | ||||
| struct Sequence *BKE_sequence_alloc(ListBase *lb, int cfra, int machine, int type); | struct Sequence *BKE_sequence_alloc(ListBase *lb, int cfra, int machine, int type); | ||||
| void BKE_sequence_alpha_mode_from_extension(struct Sequence *seq); | void BKE_sequence_alpha_mode_from_extension(struct Sequence *seq); | ||||
| void BKE_sequence_init_colorspace(struct Sequence *seq); | void BKE_sequence_init_colorspace(struct Sequence *seq); | ||||
| ▲ Show 20 Lines • Show All 99 Lines • Show Last 20 Lines | |||||