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:
Diffstat (limited to 'source/blender/quicktime/apple/quicktime_import.c')
-rw-r--r--source/blender/quicktime/apple/quicktime_import.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/quicktime/apple/quicktime_import.c b/source/blender/quicktime/apple/quicktime_import.c
index f5601fb5b8c..804f7b271de 100644
--- a/source/blender/quicktime/apple/quicktime_import.c
+++ b/source/blender/quicktime/apple/quicktime_import.c
@@ -176,7 +176,7 @@ char *get_valid_qtname(char *name)
#endif /* _WIN32 */
-int anim_is_quicktime (const char *name)
+int anim_is_quicktime(const char *name)
{
FSSpec theFSSpec;
char theFullPath[255];
@@ -255,7 +255,7 @@ int anim_is_quicktime (const char *name)
}
-void free_anim_quicktime (struct anim *anim)
+void free_anim_quicktime(struct anim *anim)
{
if (anim == NULL) return;
if (anim->qtime == NULL) return;
@@ -263,12 +263,12 @@ void free_anim_quicktime (struct anim *anim)
UnlockPixels(anim->qtime->offscreenPixMap);
if (anim->qtime->have_gw)
- DisposeGWorld( anim->qtime->offscreenGWorld );
+ DisposeGWorld(anim->qtime->offscreenGWorld);
if (anim->qtime->ibuf)
IMB_freeImBuf(anim->qtime->ibuf);
- DisposeMovie( anim->qtime->movie );
- CloseMovieFile( anim->qtime->movieRefNum );
+ DisposeMovie(anim->qtime->movie);
+ CloseMovieFile(anim->qtime->movieRefNum);
if (anim->qtime->frameIndex) MEM_freeN (anim->qtime->frameIndex);
if (anim->qtime) MEM_freeN (anim->qtime);
@@ -440,7 +440,7 @@ static short GetFirstVideoTrackPixelDepth(struct anim *anim)
}
-int startquicktime (struct anim *anim)
+int startquicktime(struct anim *anim)
{
FSSpec theFSSpec;