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:
authorCampbell Barton <ideasman42@gmail.com>2010-12-04 08:34:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-12-04 08:34:16 +0300
commitfe67fc645926935c05aa583585c9241b3d0d88eb (patch)
tree68821986250c6229d01ec12d00791756990eb516 /source/blender/quicktime/quicktime_export.h
parent60fad4c95588646aa9ee9289b88567ccb0cd72f3 (diff)
fix for strict prototype error.
Diffstat (limited to 'source/blender/quicktime/quicktime_export.h')
-rw-r--r--source/blender/quicktime/quicktime_export.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/quicktime/quicktime_export.h b/source/blender/quicktime/quicktime_export.h
index 1ca52b1bd10..ece19c2a521 100644
--- a/source/blender/quicktime/quicktime_export.h
+++ b/source/blender/quicktime/quicktime_export.h
@@ -59,14 +59,14 @@ void filepath_qt(char *string, struct RenderData *rd);
/*RNA helper functions */
void quicktime_verify_image_type(struct RenderData *rd); //used by RNA for defaults values init, if needed
/*Video codec type*/
-int quicktime_get_num_videocodecs();
+int quicktime_get_num_videocodecs(void);
QuicktimeCodecTypeDesc* quicktime_get_videocodecType_desc(int indexValue);
int quicktime_rnatmpvalue_from_videocodectype(int codecType);
int quicktime_videocodecType_from_rnatmpvalue(int rnatmpvalue);
#ifdef USE_QTKIT
/*Audio codec type*/
-int quicktime_get_num_audiocodecs();
+int quicktime_get_num_audiocodecs(void);
QuicktimeCodecTypeDesc* quicktime_get_audiocodecType_desc(int indexValue);
int quicktime_rnatmpvalue_from_audiocodectype(int codecType);
int quicktime_audiocodecType_from_rnatmpvalue(int rnatmpvalue);