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:
authorAlexander Ewering <blender@instinctive.de>2005-11-08 02:13:00 +0300
committerAlexander Ewering <blender@instinctive.de>2005-11-08 02:13:00 +0300
commit543f54aa1dd60f67b46ba860ebc905bfcd0db1ed (patch)
treeb22788b6e132129c119fff2585e94b718462027c /source/blender/makesdna/DNA_sequence_types.h
parentf09a3611be65c8fa8581a87c3d80a10e5c6eb65a (diff)
New 'feature' for image/movie strips: Strobe
In the NKEY flying panel, you can set "Strobe" to something other than 1 for only displaying each nth picture of the strip. You know the effect from movies :) (I put this into the NKEY panel rather than as a effect because effects only affect single frames (?) while this rather has to do with the timing... like "Reverse")
Diffstat (limited to 'source/blender/makesdna/DNA_sequence_types.h')
-rw-r--r--source/blender/makesdna/DNA_sequence_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h
index d5731c0bd86..09bb4b4c61a 100644
--- a/source/blender/makesdna/DNA_sequence_types.h
+++ b/source/blender/makesdna/DNA_sequence_types.h
@@ -119,7 +119,8 @@ typedef struct Sequence {
struct bSound *sound; /* the linked "bSound" object */
float level, pan; /* level in dB (0=full), pan -1..1 */
int curpos; /* last sample position in audio_fill() */
- int pad;
+ short pad;
+ short strobe;
void *effectdata; /* Struct pointer for effect settings */