# HG changeset patch # User diego # Date 1229186158 0 # Node ID d0b3e91594a56a2bb6b7bee982a7592e5c5d757a # Parent aea6eb7fd71394c537ebe469255e3321c99b56d2 cosmetics: Break some lines for a more aesthetically pleasing result. diff -r aea6eb7fd713 -r d0b3e91594a5 allformats.c --- a/allformats.c Sat Dec 13 16:08:31 2008 +0000 +++ b/allformats.c Sat Dec 13 16:35:58 2008 +0000 @@ -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