[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43398] trunk/blender/source/blender/ blenkernel/intern/movieclip.c: Refactoring and code deduplicate in movie cache

Sergey Sharybin sergey.vfx at gmail.com
Sun Jan 15 14:31:32 CET 2012


Revision: 43398
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43398
Author:   nazgul
Date:     2012-01-15 13:31:25 +0000 (Sun, 15 Jan 2012)
Log Message:
-----------
Refactoring and code deduplicate in movie cache

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/movieclip.c

Modified: trunk/blender/source/blender/blenkernel/intern/movieclip.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/movieclip.c	2012-01-15 13:23:57 UTC (rev 43397)
+++ trunk/blender/source/blender/blenkernel/intern/movieclip.c	2012-01-15 13:31:25 UTC (rev 43398)
@@ -257,18 +257,28 @@
 	/* regular movie cache */
 	struct MovieCache *moviecache;
 
+	/* cached postprocessed shot */
+	struct {
+		ImBuf *ibuf;
+		int framenr;
+
+		/* cache for undistorted shot */
+		float principal[2];
+		float k1, k2, k3;
+
+		int proxy;
+		short render_flag;
+	} postprocessed;
+
 	/* cache for stable shot */
-	int stable_framenr;
-	float stable_loc[2], stable_scale, stable_angle;
-	ImBuf *stableibuf;
-	int proxy;
-	short render_flag;
+	struct {
+		ImBuf *ibuf;
+		int framenr;
 
-	/* cache for undistorted shot */
-	int undist_framenr;
-	float principal[2];
-	float k1, k2, k3;
-	ImBuf *undistibuf;
+		float loc[2], scale, angle;
+		int proxy;
+		short render_flag;
+	} stabilized;
 } MovieClipCache;
 
 typedef struct MovieClipImBufCacheKey {
@@ -465,111 +475,153 @@
 	}
 }
 
-static int need_undistorted_cache(MovieClipUser *user, int flag)
+static ImBuf *get_undistorted_ibuf(MovieClip *clip, struct MovieDistortion *distortion, ImBuf *ibuf)
 {
+	ImBuf *undistibuf;
+
+	/* XXX: because of #27997 do not use float buffers to undistort,
+	        otherwise, undistorted proxy can be darker than it should */
+	imb_freerectfloatImBuf(ibuf);
+
+	if(distortion)
+		undistibuf= BKE_tracking_distortion_exec(distortion, &clip->tracking, ibuf, ibuf->x, ibuf->y, 0.0f, 1);
+	else
+		undistibuf= BKE_tracking_undistort(&clip->tracking, ibuf, ibuf->x, ibuf->y, 0.0f);
+
+	if(undistibuf->userflags&IB_RECT_INVALID) {
+		ibuf->userflags&= ~IB_RECT_INVALID;
+		IMB_rect_from_float(undistibuf);
+	}
+
+	IMB_scaleImBuf(undistibuf, ibuf->x, ibuf->y);
+
+	return undistibuf;
+}
+
+static int need_undistortion_postprocess(MovieClipUser *user, int flag)
+{
+	int result = 0;
+
 	/* only full undistorted render can be used as on-fly undistorting image */
-	if(flag&MCLIP_USE_PROXY) {
-		if(user->render_size != MCLIP_PROXY_RENDER_SIZE_FULL || (user->render_flag&MCLIP_PROXY_RENDER_UNDISTORT)==0)
-			return 0;
+	if(flag & MCLIP_USE_PROXY) {
+		result |= (user->render_size == MCLIP_PROXY_RENDER_SIZE_FULL) &&
+		          (user->render_flag & MCLIP_PROXY_RENDER_UNDISTORT) != 0;
 	}
-	else return 0;
 
-	return 1;
+	return result;
 }
 
-static ImBuf *get_undistorted_cache(MovieClip *clip, MovieClipUser *user)
+static int need_postprocessed_frame(MovieClipUser *user, int flag)
 {
+	int result = 0;
+
+	result |= need_undistortion_postprocess(user, flag);
+
+	return result;
+}
+
+static int check_undistortion_cache_flags(MovieClip *clip)
+{
 	MovieClipCache *cache= clip->cache;
 	MovieTrackingCamera *camera= &clip->tracking.camera;
-	int framenr= user->framenr;
 
-	/* no cache or no cached undistorted image */
-	if(!clip->cache || !clip->cache->undistibuf)
-		return NULL;
-
-	/* undistortion happened for other frame */
-	if(cache->undist_framenr!=framenr)
-		return NULL;
-
 	/* check for distortion model changes */
-	if(!equals_v2v2(camera->principal, cache->principal))
-		return NULL;
+	if(!equals_v2v2(camera->principal, cache->postprocessed.principal))
+		return 0;
 
-	if(!equals_v3v3(&camera->k1, &cache->k1))
-		return NULL;
+	if(!equals_v3v3(&camera->k1, &cache->postprocessed.k1))
+		return 0;
 
-	IMB_refImBuf(cache->undistibuf);
-
-	return cache->undistibuf;
+	return 1;
 }
 
-static ImBuf *get_undistorted_ibuf(MovieClip *clip, struct MovieDistortion *distortion, ImBuf *ibuf)
+static ImBuf *get_postprocessed_cached_frame(MovieClip *clip, MovieClipUser *user, int flag)
 {
-	ImBuf *undistibuf;
+	MovieClipCache *cache= clip->cache;
+	int framenr= user->framenr;
+	short proxy= IMB_PROXY_NONE;
+	int render_flag= 0;
 
-	/* XXX: because of #27997 do not use float buffers to undistort,
-	        otherwise, undistorted proxy can be darker than it should */
-	imb_freerectfloatImBuf(ibuf);
+	if(flag&MCLIP_USE_PROXY) {
+		proxy= rendersize_to_proxy(user, flag);
+		render_flag= user->render_flag;
+	}
 
-	if(distortion)
-		undistibuf= BKE_tracking_distortion_exec(distortion, &clip->tracking, ibuf, ibuf->x, ibuf->y, 0.0f, 1);
-	else
-		undistibuf= BKE_tracking_undistort(&clip->tracking, ibuf, ibuf->x, ibuf->y, 0.0f);
+	/* no cache or no cached postprocessed image */
+	if(!clip->cache || !clip->cache->postprocessed.ibuf)
+		return NULL;
 
-	if(undistibuf->userflags&IB_RECT_INVALID) {
-		ibuf->userflags&= ~IB_RECT_INVALID;
-		IMB_rect_from_float(undistibuf);
+	/* postprocessing happened for other frame */
+	if(cache->postprocessed.framenr != framenr)
+		return NULL;
+
+	/* cached ibuf used different proxy settings */
+	if(cache->postprocessed.render_flag!=render_flag || cache->postprocessed.proxy!=proxy)
+		return NULL;
+
+	if(need_undistortion_postprocess(user, flag)) {
+		if(!check_undistortion_cache_flags(clip))
+			return NULL;
 	}
 
-	IMB_scaleImBuf(undistibuf, ibuf->x, ibuf->y);
+	IMB_refImBuf(cache->postprocessed.ibuf);
 
-	return undistibuf;
+	return cache->postprocessed.ibuf;
 }
 
-static ImBuf *put_undistorted_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf)
+static ImBuf *put_postprocessed_frame_to_cache(MovieClip *clip, MovieClipUser *user, ImBuf *ibuf, int flag)
 {
 	MovieClipCache *cache= clip->cache;
 	MovieTrackingCamera *camera= &clip->tracking.camera;
+	ImBuf *postproc_ibuf;
 
-	copy_v2_v2(cache->principal, camera->principal);
-	copy_v3_v3(&cache->k1, &camera->k1);
-	cache->undist_framenr= user->framenr;
+	if(cache->postprocessed.ibuf)
+		IMB_freeImBuf(cache->postprocessed.ibuf);
 
-	if(cache->undistibuf)
-		IMB_freeImBuf(cache->undistibuf);
+	cache->postprocessed.framenr= user->framenr;
 
-	cache->undistibuf= get_undistorted_ibuf(clip, NULL, ibuf);
+	if(flag&MCLIP_USE_PROXY) {
+		cache->postprocessed.proxy= rendersize_to_proxy(user, flag);
+		cache->postprocessed.render_flag= user->render_flag;
+	}
+	else {
+		cache->postprocessed.proxy = IMB_PROXY_NONE;
+		cache->postprocessed.render_flag = 0;
+	}
 
-	if(cache->stableibuf) {
-		/* force stable buffer be re-calculated */
-		IMB_freeImBuf(cache->stableibuf);
-		cache->stableibuf= NULL;
+	if(need_undistortion_postprocess(user, flag)) {
+		copy_v2_v2(cache->postprocessed.principal, camera->principal);
+		copy_v3_v3(&cache->postprocessed.k1, &camera->k1);
 	}
 
-	IMB_refImBuf(cache->undistibuf);
+	postproc_ibuf= get_undistorted_ibuf(clip, NULL, ibuf);
 
-	return cache->undistibuf;
+	IMB_refImBuf(postproc_ibuf);
+
+	cache->postprocessed.ibuf= postproc_ibuf;
+
+	return postproc_ibuf;
 }
 
-ImBuf *BKE_movieclip_get_ibuf(MovieClip *clip, MovieClipUser *user)
+static ImBuf *movieclip_get_postprocessed_ibuf(MovieClip *clip, MovieClipUser *user, int flag)
 {
 	ImBuf *ibuf= NULL;
-	int framenr= user->framenr;
-	int cache_undistorted= 0;
+	int framenr= user->framenr, need_postprocess= 0;
 
 	/* cache isn't threadsafe itself and also loading of movies
 	   can't happen from concurent threads that's why we use lock here */
 	BLI_lock_thread(LOCK_MOVIECLIP);
 
-	/* try to obtain cached undistorted image first */
-	if(need_undistorted_cache(user, clip->flag)) {
-		ibuf= get_undistorted_cache(clip, user);
+	/* try to obtain cached postprocessed frame first */
+	if(need_postprocessed_frame(user, flag)) {
+		ibuf= get_postprocessed_cached_frame(clip, user, flag);
+
 		if(!ibuf)
-			cache_undistorted= 1;
+			need_postprocess= 1;
 	}
 
 	if(!ibuf)
-		ibuf= get_imbuf_cache(clip, user, clip->flag);
+		ibuf= get_imbuf_cache(clip, user, flag);
 
 	if(!ibuf) {
 		int use_sequence= 0;
@@ -579,23 +631,23 @@
 			(user->render_size!=MCLIP_PROXY_RENDER_SIZE_FULL);
 
 		if(clip->source==MCLIP_SRC_SEQUENCE || use_sequence)
-			ibuf= movieclip_load_sequence_file(clip, user, framenr, clip->flag);
+			ibuf= movieclip_load_sequence_file(clip, user, framenr, flag);
 		else {
-			ibuf= movieclip_load_movie_file(clip, user, framenr, clip->flag);
+			ibuf= movieclip_load_movie_file(clip, user, framenr, flag);
 		}
 
 		if(ibuf)
-			put_imbuf_cache(clip, user, ibuf, clip->flag);
+			put_imbuf_cache(clip, user, ibuf, flag);
 	}
 
 	if(ibuf) {
 		clip->lastframe= framenr;
 		real_ibuf_size(clip, user, ibuf, &clip->lastsize[0], &clip->lastsize[1]);
 
-		/* put undistorted frame to cache */
-		if(cache_undistorted) {
+		/* postprocess frame and put to cache */
+		if(need_postprocess) {
 			ImBuf *tmpibuf= ibuf;
-			ibuf= put_undistorted_cache(clip, user, tmpibuf);
+			ibuf= put_postprocessed_frame_to_cache(clip, user, tmpibuf, flag);
 			IMB_freeImBuf(tmpibuf);
 		}
 	}
@@ -605,50 +657,85 @@
 	return ibuf;
 }
 
+ImBuf *BKE_movieclip_get_ibuf(MovieClip *clip, MovieClipUser *user)
+{
+	return BKE_movieclip_get_ibuf_flag(clip, user, clip->flag);
+}
+
 ImBuf *BKE_movieclip_get_ibuf_flag(MovieClip *clip, MovieClipUser *user, int flag)
 {
-	ImBuf *ibuf= NULL;
-	int framenr= user->framenr;
-	int cache_undistorted= 0;
+	return movieclip_get_postprocessed_ibuf(clip, user, flag);
+}
 
-	/* cache isn't threadsafe itself and also loading of movies
-	   can't happen from concurent threads that's why we use lock here */
-	BLI_lock_thread(LOCK_MOVIECLIP);
+static ImBuf *get_stable_cached_frame(MovieClip *clip, MovieClipUser *user, int framenr)
+{
+	MovieClipCache *cache = clip->cache;
+	ImBuf *stableibuf;
+	float tloc[2], tscale, tangle;
+	short proxy = IMB_PROXY_NONE;
+	int render_flag = 0;
 
-	/* try to obtain cached undistorted image first */
-	if(need_undistorted_cache(user, flag)) {
-		ibuf= get_undistorted_cache(clip, user);
-		if(!ibuf)
-			cache_undistorted= 1;
+	if(clip->flag&MCLIP_USE_PROXY) {
+		proxy = rendersize_to_proxy(user, clip->flag);
+		render_flag = user->render_flag;
 	}
 
-	ibuf= get_imbuf_cache(clip, user, flag);
+	/* there's no cached frame or it was calculated for another frame */
+	if(!cache->stabilized.ibuf || cache->stabilized.framenr != framenr)
+		return NULL;
 
-	if(!ibuf) {
-		if(clip->source==MCLIP_SRC_SEQUENCE) {
-			ibuf= movieclip_load_sequence_file(clip, user, framenr, flag);
-		} else {
-			ibuf= movieclip_load_movie_file(clip, user, framenr, flag);
-		}
+	/* cached ibuf used different proxy settings */
+	if(cache->stabilized.render_flag!=render_flag || cache->stabilized.proxy!=proxy)
+		return NULL;
 
-		if(ibuf) {
-			int bits= MCLIP_USE_PROXY|MCLIP_USE_PROXY_CUSTOM_DIR;
+	stableibuf = cache->stabilized.ibuf;
 
-			if((flag&bits)==(clip->flag&bits))
-				put_imbuf_cache(clip, user, ibuf, clip->flag);
-		}

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list