diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-16 21:11:28 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-08-16 21:11:28 +0000 |
commit | dd68318ceee3de05ca705652133e1eb22a17780e (patch) | |
tree | 372a4dad262c34f04030d757d8d2a39cee4bd0f1 /libswscale/swscale_internal.h | |
parent | 9dc6bb7b9fdda6cd1a856db79088c5f239cecb0f (diff) | |
download | ffmpeg-dd68318ceee3de05ca705652133e1eb22a17780e.tar.gz |
Cosmetics:
- Place curly brackets in the same line as while/for/if/switch/else/do;
- Place curly brackets at column 0 in the next line starting a function.
Originally committed as revision 29523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 9063a20fba..868feb3737 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -64,7 +64,7 @@ typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], uint8_t* dst[], int dstStride[]); /* This struct should be aligned on at least a 32-byte boundary. */ -typedef struct SwsContext{ +typedef struct SwsContext { /** * info on struct for av_log */ |