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:
authorDamien Plisson <damien.plisson@yahoo.fr>2009-12-02 17:39:49 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2009-12-02 17:39:49 +0300
commita219c93cb0415962ce09930a6475286bc4a18453 (patch)
tree090db3754cfcd88b14e31c0abd3527b25b22bac8 /source/blender/quicktime/quicktime_export.h
parentd56324b254ce689bf1d983696c2d4e4af1ea6604 (diff)
Quicktime(Carbon/win32) : add operator to raise the "compression settings" quicktime standard dialog
Diffstat (limited to 'source/blender/quicktime/quicktime_export.h')
-rw-r--r--source/blender/quicktime/quicktime_export.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/quicktime/quicktime_export.h b/source/blender/quicktime/quicktime_export.h
index 61153ff91d2..69f679693f6 100644
--- a/source/blender/quicktime/quicktime_export.h
+++ b/source/blender/quicktime/quicktime_export.h
@@ -44,6 +44,7 @@ typedef struct QuicktimeCodecTypeDesc {
// quicktime movie output functions
struct RenderData;
struct Scene;
+struct wmOperatorType;
void start_qt(struct Scene *scene, struct RenderData *rd, int rectx, int recty); //for movie handle (BKE writeavi.c now)
void append_qt(struct RenderData *rd, int frame, int *pixels, int rectx, int recty);
@@ -57,7 +58,7 @@ int quicktime_rnatmpvalue_from_codectype(int codecType);
int quicktime_codecType_from_rnatmpvalue(int rnatmpvalue);
#ifndef USE_QTKIT
-int request_qtcodec_settings(struct RenderData *rd); //Raise quicktime standard dialog to request codec settings
+void SCENE_OT_render_data_set_quicktime_codec(struct wmOperatorType *ot); //Operator to raise quicktime standard dialog to request codec settings
#endif