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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-06-07 20:15:24 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-06-07 20:15:24 +0400
commit8a500eea9a7414747eeb45d97b8581a507322db6 (patch)
tree86f0c848e9ebdbcf6b659f60fcd12642cc8eec5d /source
parent105b1031dd34d19755b7ec5f5a7dcc6bfa74b2fb (diff)
Avoid imbuf loading when getting movie clip size
This prevents high memory usage by non-proxied frames when doing mask parenting. Description from code: Originally was needed to support image sequences with different image dimensions, which might be useful for such things as reconstruction of unordered image sequence, or painting/rotoscoping of non-equal-sized images, but this ended up in unneeded cache lookups and even unwanted non-proxied files loading when doing mask parenting, so let's disable this for now and assume image sequence consists of images with equal sizes
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/movieclip.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/movieclip.c b/source/blender/blenkernel/intern/movieclip.c
index de12926f3eb..985fc433c13 100644
--- a/source/blender/blenkernel/intern/movieclip.c
+++ b/source/blender/blenkernel/intern/movieclip.c
@@ -916,7 +916,17 @@ int BKE_movieclip_has_frame(MovieClip *clip, MovieClipUser *user)
void BKE_movieclip_get_size(MovieClip *clip, MovieClipUser *user, int *width, int *height)
{
+#if 0
+ /* originally was needed to support image sequences with different image dimensions,
+ * which might be useful for such things as reconstruction of unordered image sequence,
+ * or painting/rotoscoping of non-equal-sized images, but this ended up in unneeded
+ * cache lookups and even unwanted non-proxied files loading when doing mask parenting,
+ * so let's disable this for now and assume image sequence consists of images with
+ * equal sizes (sergey)
+ */
if (user->framenr == clip->lastframe) {
+#endif
+ if (clip->lastsize[0] != 0 && clip->lastsize[1] != 0) {
*width = clip->lastsize[0];
*height = clip->lastsize[1];
}