[FFmpeg-cvslog] r16106 - trunk/libavformat/allformats.c

diego subversion
Sat Dec 13 17:35:58 CET 2008


Author: diego
Date: Sat Dec 13 17:35:58 2008
New Revision: 16106

Log:
cosmetics: Break some lines for a more aesthetically pleasing result.


Modified:
   trunk/libavformat/allformats.c

Modified: trunk/libavformat/allformats.c
==============================================================================
--- trunk/libavformat/allformats.c	(original)
+++ trunk/libavformat/allformats.c	Sat Dec 13 17:35:58 2008
@@ -22,15 +22,18 @@
 #include "rtp_internal.h"
 #include "rdt.h"
 
-#define REGISTER_MUXER(X,x) { extern AVOutputFormat x##_muxer; \
+#define REGISTER_MUXER(X,x) {
+    extern AVOutputFormat x##_muxer; \
     if(ENABLE_##X##_MUXER) av_register_output_format(&x##_muxer); }
 
-#define REGISTER_DEMUXER(X,x) { extern AVInputFormat x##_demuxer; \
+#define REGISTER_DEMUXER(X,x) {
+    extern AVInputFormat x##_demuxer; \
     if(ENABLE_##X##_DEMUXER) av_register_input_format(&x##_demuxer); }
 
 #define REGISTER_MUXDEMUX(X,x)  REGISTER_MUXER(X,x); REGISTER_DEMUXER(X,x)
 
-#define REGISTER_PROTOCOL(X,x) { extern URLProtocol x##_protocol; \
+#define REGISTER_PROTOCOL(X,x) {
+    extern URLProtocol x##_protocol; \
     if(ENABLE_##X##_PROTOCOL) register_protocol(&x##_protocol); }
 
 /* If you do not call this function, then you can select exactly which




More information about the ffmpeg-cvslog mailing list