OSDN Git Service

cosmetics: Break some lines for a more aesthetically pleasing result.
authorDiego Biurrun <diego@biurrun.de>
Sat, 13 Dec 2008 16:35:58 +0000 (16:35 +0000)
committerDiego Biurrun <diego@biurrun.de>
Sat, 13 Dec 2008 16:35:58 +0000 (16:35 +0000)
Originally committed as revision 16106 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/allformats.c

index 1779477..40a8be3 100644 (file)
 #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