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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-02-01 22:08:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-02-01 22:08:37 +0400
commitf193291b32bceeb91a5d0d69554d6e2d56538df0 (patch)
treeb4a0ada454ff2d3d0e69afae49c8a50a5eb4c756 /source/blender/makesdna/DNA_movieclip_types.h
parentd882f05b824f4111ef5c319c89a2f85b1773c579 (diff)
Movie Clip Editor: proxy sizes for original and undistortted footages are now controlling separately
Diffstat (limited to 'source/blender/makesdna/DNA_movieclip_types.h')
-rw-r--r--source/blender/makesdna/DNA_movieclip_types.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h
index 1a56c273922..e5c706d2a3a 100644
--- a/source/blender/makesdna/DNA_movieclip_types.h
+++ b/source/blender/makesdna/DNA_movieclip_types.h
@@ -57,8 +57,6 @@ typedef struct MovieClipProxy {
short quality; /* proxy build quality */
short build_size_flag; /* size flags (see below) of all proxies to build */
short build_tc_flag; /* time code flags (see below) of all tc indices to build */
- short build_flag, pad; /* other build flags */
- char pad2[4];
} MovieClipProxy;
typedef struct MovieClip {
@@ -98,8 +96,15 @@ typedef struct MovieClipScopes {
float slide_scale[2]; /* scale used for sliding from previewe area */
} MovieClipScopes;
-/* MovieClipProxy->build_flag */
-#define MCLIP_PROXY_BUILD_UNDISTORT 1 /* build undistorted proxies as well */
+/* MovieClipProxy->build_size_flag */
+#define MCLIP_PROXY_SIZE_25 (1<<0)
+#define MCLIP_PROXY_SIZE_50 (1<<1)
+#define MCLIP_PROXY_SIZE_75 (1<<2)
+#define MCLIP_PROXY_SIZE_100 (1<<3)
+#define MCLIP_PROXY_UNDISTORTED_SIZE_25 (1<<4)
+#define MCLIP_PROXY_UNDISTORTED_SIZE_50 (1<<5)
+#define MCLIP_PROXY_UNDISTORTED_SIZE_75 (1<<6)
+#define MCLIP_PROXY_UNDISTORTED_SIZE_100 (1<<7)
/* MovieClip->source */
#define MCLIP_SRC_SEQUENCE 1