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:
Diffstat (limited to 'source/blender/imbuf/intern/moviecache.c')
-rw-r--r--source/blender/imbuf/intern/moviecache.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/imbuf/intern/moviecache.c b/source/blender/imbuf/intern/moviecache.c
index f3b76288831..96ecbdce9cc 100644
--- a/source/blender/imbuf/intern/moviecache.c
+++ b/source/blender/imbuf/intern/moviecache.c
@@ -479,10 +479,10 @@ void IMB_moviecache_cleanup(MovieCache *cache,
/* get segments of cached frames. useful for debugging cache policies */
void IMB_moviecache_get_cache_segments(
- MovieCache *cache, int proxy, int render_flags, int *totseg_r, int **points_r)
+ MovieCache *cache, int proxy, int render_flags, int *r_totseg, int **r_points)
{
- *totseg_r = 0;
- *points_r = NULL;
+ *r_totseg = 0;
+ *r_points = NULL;
if (!cache->getdatafp) {
return;
@@ -497,8 +497,8 @@ void IMB_moviecache_get_cache_segments(
}
if (cache->points) {
- *totseg_r = cache->totseg;
- *points_r = cache->points;
+ *r_totseg = cache->totseg;
+ *r_points = cache->points;
}
else {
int totframe = BLI_ghash_len(cache->hash);
@@ -555,8 +555,8 @@ void IMB_moviecache_get_cache_segments(
}
}
- *totseg_r = totseg;
- *points_r = points;
+ *r_totseg = totseg;
+ *r_points = points;
cache->totseg = totseg;
cache->points = points;