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 22:16:13 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-01-04 22:16:13 +0300
commit49631b6e409d458d7023b8d8ceff5de58a7597e8 (patch)
tree39a0b5ac3a0c127e645aeb78496a8033041a4eea /source/blender/quicktime
parent3009e10151d4543eabdf1d5ca2e09d485aa5996c (diff)
2.5
- fix warnings for append_qt (missing param)
Diffstat (limited to 'source/blender/quicktime')
-rw-r--r--source/blender/quicktime/apple/quicktime_export.c2
-rw-r--r--source/blender/quicktime/quicktime_export.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/quicktime/apple/quicktime_export.c b/source/blender/quicktime/apple/quicktime_export.c
index c863d6be429..de8c4179132 100644
--- a/source/blender/quicktime/apple/quicktime_export.c
+++ b/source/blender/quicktime/apple/quicktime_export.c
@@ -519,7 +519,7 @@ void start_qt(struct RenderData *rd, int rectx, int recty) {
}
-void append_qt(int frame, int *pixels, int rectx, int recty) {
+void append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty) {
QT_DoAddVideoSamplesToMedia(frame, pixels, rectx, recty);
}
diff --git a/source/blender/quicktime/quicktime_export.h b/source/blender/quicktime/quicktime_export.h
index 0f8e2dc7225..b5c0dcff232 100644
--- a/source/blender/quicktime/quicktime_export.h
+++ b/source/blender/quicktime/quicktime_export.h
@@ -37,7 +37,7 @@
struct RenderData;
void start_qt(struct RenderData *rd, int rectx, int recty); //for movie handle (BKE writeavi.c now)
-void append_qt(int frame, int *pixels, int rectx, int recty);
+void append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty);
void end_qt(void);
int get_qtcodec_settings(struct RenderData *rd); //for buttons.c