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/avi/intern/avi.c')
-rw-r--r--source/blender/avi/intern/avi.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c
index ea83afb16fb..3a64a8aa8ac 100644
--- a/source/blender/avi/intern/avi.c
+++ b/source/blender/avi/intern/avi.c
@@ -58,8 +58,8 @@ static char DEBUG_FCC[4];
#define DEBUG_PRINT(x) if (AVI_DEBUG) { printf("AVI DEBUG: " x); } (void)0
/* local functions */
-char *fcc_to_char (unsigned int fcc);
-char *tcc_to_char (unsigned int tcc);
+char *fcc_to_char(unsigned int fcc);
+char *tcc_to_char(unsigned int tcc);
@@ -89,7 +89,7 @@ unsigned int GET_TCC (FILE *fp)
return FCC (tmp);
}
-char *fcc_to_char (unsigned int fcc)
+char *fcc_to_char(unsigned int fcc)
{
DEBUG_FCC[0]= (fcc)&127;
DEBUG_FCC[1]= (fcc>>8)&127;
@@ -99,7 +99,7 @@ char *fcc_to_char (unsigned int fcc)
return DEBUG_FCC;
}
-char *tcc_to_char (unsigned int tcc)
+char *tcc_to_char(unsigned int tcc)
{
DEBUG_FCC[0]= (tcc)&127;
DEBUG_FCC[1]= (tcc>>8)&127;
@@ -109,7 +109,7 @@ char *tcc_to_char (unsigned int tcc)
return DEBUG_FCC;
}
-int AVI_get_stream (AviMovie *movie, int avist_type, int stream_num)
+int AVI_get_stream(AviMovie *movie, int avist_type, int stream_num)
{
int cur_stream;
@@ -157,7 +157,7 @@ static int fcc_is_data (int fcc)
return 1;
}
-AviError AVI_print_error (AviError in_error)
+AviError AVI_print_error(AviError in_error)
{
int error;
@@ -200,12 +200,12 @@ AviError AVI_print_error (AviError in_error)
return in_error;
}
#if 0
-void AVI_set_debug (int mode)
+void AVI_set_debug(int mode)
{
AVI_DEBUG= mode;
}
-int AVI_is_avi (char *name)
+int AVI_is_avi(char *name)
{
FILE *fp;
int ret;
@@ -228,7 +228,7 @@ int AVI_is_avi (char *name)
}
#endif
-int AVI_is_avi (const char *name)
+int AVI_is_avi(const char *name)
{
int temp, fcca, j;
AviMovie movie= {NULL};
@@ -425,7 +425,7 @@ int AVI_is_avi (const char *name)
}
-AviError AVI_open_movie (const char *name, AviMovie *movie)
+AviError AVI_open_movie(const char *name, AviMovie *movie)
{
int temp, fcca, size, j;
@@ -714,7 +714,7 @@ void *AVI_read_frame (AviMovie *movie, AviFormat format, int frame, int stream)
return buffer;
}
-AviError AVI_close (AviMovie *movie)
+AviError AVI_close(AviMovie *movie)
{
int i;
@@ -737,7 +737,7 @@ AviError AVI_close (AviMovie *movie)
return AVI_ERROR_NONE;
}
-AviError AVI_open_compress (char *name, AviMovie *movie, int streams, ...)
+AviError AVI_open_compress(char *name, AviMovie *movie, int streams, ...)
{
va_list ap;
AviList list;
@@ -933,7 +933,7 @@ AviError AVI_open_compress (char *name, AviMovie *movie, int streams, ...)
return AVI_ERROR_NONE;
}
-AviError AVI_write_frame (AviMovie *movie, int frame_num, ...)
+AviError AVI_write_frame(AviMovie *movie, int frame_num, ...)
{
AviList list;
AviChunk chunk;
@@ -1041,7 +1041,7 @@ AviError AVI_write_frame (AviMovie *movie, int frame_num, ...)
return AVI_ERROR_NONE;
}
-AviError AVI_close_compress (AviMovie *movie)
+AviError AVI_close_compress(AviMovie *movie)
{
int temp, movi_size, i;