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:
authorNathan Letwory <nathan@letworyinteractive.com>2009-01-04 21:26:43 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-01-04 21:26:43 +0300
commit7cd56835a37c7b72c19fc4072d3917bb182206df (patch)
tree160d2295a141f1c7e6f1ed70765f049b67de117e /source/blender/blenkernel/BKE_writeavi.h
parent9e7643aa7c25ce551bfe59905fbf56156e264824 (diff)
2.5 / global cleanup fix
- RenderData was missing from append_movie/avi
Diffstat (limited to 'source/blender/blenkernel/BKE_writeavi.h')
-rw-r--r--source/blender/blenkernel/BKE_writeavi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_writeavi.h b/source/blender/blenkernel/BKE_writeavi.h
index e8294069908..cae1f25d0d8 100644
--- a/source/blender/blenkernel/BKE_writeavi.h
+++ b/source/blender/blenkernel/BKE_writeavi.h
@@ -39,12 +39,12 @@ extern "C" {
struct RenderData;
void start_avi(struct RenderData *rd, int rectx, int recty);
void end_avi(void);
-void append_avi(int frame, int *pixels, int rectx, int recty);
+void append_avi(struct RenderData *rd, int frame, int *pixels, int rectx, int recty);
void makeavistring (struct RenderData *rd, char *string);
typedef struct bMovieHandle {
void (*start_movie)(struct RenderData *rd, int rectx, int recty);
- void (*append_movie)(int frame, int *pixels, int rectx, int recty);
+ void (*append_movie)(struct RenderData *rd, int frame, int *pixels, int rectx, int recty);
void (*end_movie)(void);
int (*get_next_frame)(struct RenderData *rd); /* optional */
} bMovieHandle;