diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-12-13 17:04:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-13 17:04:22 +0000 |
commit | 8a9572c26f8a5b88966a0f2ee64750a40347d2fe (patch) | |
tree | 817f20755bf3de11b2c62edde7292ccb7772479d | |
parent | 6d99b2285d1694377ee6f3658b119869208714b9 (diff) | |
download | ffmpeg-8a9572c26f8a5b88966a0f2ee64750a40347d2fe.tar.gz |
100l: Add missing backslashes.
Originally committed as revision 16107 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/allformats.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 40a8be376c..986e0f07da 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -22,17 +22,17 @@ #include "rtp_internal.h" #include "rdt.h" -#define REGISTER_MUXER(X,x) { +#define REGISTER_MUXER(X,x) { \ extern AVOutputFormat x##_muxer; \ if(ENABLE_##X##_MUXER) av_register_output_format(&x##_muxer); } -#define REGISTER_DEMUXER(X,x) { +#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) { +#define REGISTER_PROTOCOL(X,x) { \ extern URLProtocol x##_protocol; \ if(ENABLE_##X##_PROTOCOL) register_protocol(&x##_protocol); } |