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>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/avi/intern/avi_intern.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
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);