Commit 066d445f authored by diego's avatar diego

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16106 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bffed146
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment