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/editors/space_clip/clip_ops.c')
-rw-r--r--source/blender/editors/space_clip/clip_ops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c
index efc8c3bb7dd..4e5c6513695 100644
--- a/source/blender/editors/space_clip/clip_ops.c
+++ b/source/blender/editors/space_clip/clip_ops.c
@@ -1315,8 +1315,8 @@ typedef struct ProxyThread {
static unsigned char *proxy_thread_next_frame(ProxyQueue *queue,
MovieClip *clip,
- size_t *size_r,
- int *cfra_r)
+ size_t *r_size,
+ int *r_cfra)
{
unsigned char *mem = NULL;
@@ -1353,8 +1353,8 @@ static unsigned char *proxy_thread_next_frame(ProxyQueue *queue,
return NULL;
}
- *size_r = size;
- *cfra_r = queue->cfra;
+ *r_size = size;
+ *r_cfra = queue->cfra;
queue->cfra++;
close(file);