diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-13 13:39:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-13 13:39:13 +0000 |
commit | 7f37f5687dab7f5b2c5847f2f97b44c43ad396bf (patch) | |
tree | 6e52ea6563a096f919aab3415d0a264ef4734c2b /libavformat/allformats.c | |
parent | bda4e3940a12c386a588f6df42daaeb1758aa866 (diff) | |
download | ffmpeg-7f37f5687dab7f5b2c5847f2f97b44c43ad396bf.tar.gz |
whitespace cosmetics
Originally committed as revision 16100 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 8c0cd5df66..1779477200 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -22,16 +22,16 @@ #include "rtp_internal.h" #include "rdt.h" -#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; \ - if(ENABLE_##X##_DEMUXER) av_register_input_format(&x##_demuxer); } +#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; \ + 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; \ - if(ENABLE_##X##_PROTOCOL) register_protocol(&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 formats you want to support */ |