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:
authorJulian Eisel <julian@blender.org>2020-03-16 20:13:37 +0300
committerJulian Eisel <julian@blender.org>2020-03-16 20:13:37 +0300
commitd2ef342b2a50a7eac725889708fd689ffa126e25 (patch)
treed6606e846b40bf517ab13477003e5e556ae26b66 /source/blender/blenkernel/BKE_writeavi.h
parentcb6cec904fa14ce0ab10a2a53af5c936d56376cf (diff)
parente42f61dda8b635511f083c09ccda5db9d28ec172 (diff)
Merge branch 'master' into temp-openxr-ghostxr
Diffstat (limited to 'source/blender/blenkernel/BKE_writeavi.h')
-rw-r--r--source/blender/blenkernel/BKE_writeavi.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blender/blenkernel/BKE_writeavi.h b/source/blender/blenkernel/BKE_writeavi.h
index 7fc740a4a9b..79605e99306 100644
--- a/source/blender/blenkernel/BKE_writeavi.h
+++ b/source/blender/blenkernel/BKE_writeavi.h
@@ -36,7 +36,7 @@ struct Scene;
typedef struct bMovieHandle {
int (*start_movie)(void *context_v,
- struct Scene *scene,
+ const struct Scene *scene,
struct RenderData *rd,
int rectx,
int recty,
@@ -55,14 +55,20 @@ typedef struct bMovieHandle {
void (*end_movie)(void *context_v);
/* Optional function. */
- void (*get_movie_path)(char *string, struct RenderData *rd, bool preview, const char *suffix);
+ void (*get_movie_path)(char *string,
+ const struct RenderData *rd,
+ bool preview,
+ const char *suffix);
void *(*context_create)(void);
void (*context_free)(void *context_v);
} bMovieHandle;
bMovieHandle *BKE_movie_handle_get(const char imtype);
-void BKE_movie_filepath_get(char *string, struct RenderData *rd, bool preview, const char *suffix);
+void BKE_movie_filepath_get(char *string,
+ const struct RenderData *rd,
+ bool preview,
+ const char *suffix);
#ifdef __cplusplus
}