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_intern.h')
-rw-r--r--source/blender/avi/intern/avi_intern.h38
1 files changed, 21 insertions, 17 deletions
diff --git a/source/blender/avi/intern/avi_intern.h b/source/blender/avi/intern/avi_intern.h
index d31e4299ff0..6ce91ce7f70 100644
--- a/source/blender/avi/intern/avi_intern.h
+++ b/source/blender/avi/intern/avi_intern.h
@@ -30,28 +30,32 @@ unsigned int GET_FCC(FILE *fp);
unsigned int GET_TCC(FILE *fp);
#define PUT_FCC(ch4, fp) \
-{ \
- putc(ch4[0], fp); \
- putc(ch4[1], fp); \
- putc(ch4[2], fp); \
- putc(ch4[3], fp); \
-} (void)0
+ { \
+ putc(ch4[0], fp); \
+ putc(ch4[1], fp); \
+ putc(ch4[2], fp); \
+ putc(ch4[3], fp); \
+ } \
+ (void)0
#define PUT_FCCN(num, fp) \
-{ \
- putc((num >> 0) & 0377, fp); \
- putc((num >> 8) & 0377, fp); \
- putc((num >> 16) & 0377, fp); \
- putc((num >> 24) & 0377, fp); \
-} (void)0
+ { \
+ putc((num >> 0) & 0377, fp); \
+ putc((num >> 8) & 0377, fp); \
+ putc((num >> 16) & 0377, fp); \
+ putc((num >> 24) & 0377, fp); \
+ } \
+ (void)0
#define PUT_TCC(ch2, fp) \
-{ \
- putc(ch2[0], fp); \
- putc(ch2[1], fp); \
-} (void)0
+ { \
+ putc(ch2[0], fp); \
+ putc(ch2[1], fp); \
+ } \
+ (void)0
-void *avi_format_convert(AviMovie *movie, int stream, void *buffer, AviFormat from, AviFormat to, size_t *size);
+void *avi_format_convert(
+ AviMovie *movie, int stream, void *buffer, AviFormat from, AviFormat to, size_t *size);
int avi_get_data_id(AviFormat format, int stream);
int avi_get_format_type(AviFormat format);