[FFmpeg-cvslog] avformat/rtmpproto: Only include RTMP protocols that are enabled
Andreas Rheinhardt
git at videolan.org
Wed Feb 3 01:06:29 EET 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Fri Jan 29 01:53:04 2021 +0100| [5cad6c6e855b2ed2941426474b5b06f34dec9ce4] | committer: Andreas Rheinhardt
avformat/rtmpproto: Only include RTMP protocols that are enabled
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5cad6c6e855b2ed2941426474b5b06f34dec9ce4
---
libavformat/rtmpproto.c | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index d9741bc622..5a540e3240 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -3119,7 +3119,8 @@ static const AVOption rtmp_options[] = {
{ NULL },
};
-#define RTMP_PROTOCOL(flavor) \
+#define RTMP_PROTOCOL_0(flavor)
+#define RTMP_PROTOCOL_1(flavor) \
static const AVClass flavor##_class = { \
.class_name = #flavor, \
.item_name = av_default_item_name, \
@@ -3139,11 +3140,16 @@ const URLProtocol ff_##flavor##_protocol = { \
.flags = URL_PROTOCOL_FLAG_NETWORK, \
.priv_data_class= &flavor##_class, \
};
-
-
-RTMP_PROTOCOL(rtmp)
-RTMP_PROTOCOL(rtmpe)
-RTMP_PROTOCOL(rtmps)
-RTMP_PROTOCOL(rtmpt)
-RTMP_PROTOCOL(rtmpte)
-RTMP_PROTOCOL(rtmpts)
+#define RTMP_PROTOCOL_2(flavor, enabled) \
+ RTMP_PROTOCOL_ ## enabled(flavor)
+#define RTMP_PROTOCOL_3(flavor, config) \
+ RTMP_PROTOCOL_2(flavor, config)
+#define RTMP_PROTOCOL(flavor, uppercase) \
+ RTMP_PROTOCOL_3(flavor, CONFIG_ ## uppercase ## _PROTOCOL)
+
+RTMP_PROTOCOL(rtmp, RTMP)
+RTMP_PROTOCOL(rtmpe, RTMPE)
+RTMP_PROTOCOL(rtmps, RTMPS)
+RTMP_PROTOCOL(rtmpt, RTMPT)
+RTMP_PROTOCOL(rtmpte, RTMPTE)
+RTMP_PROTOCOL(rtmpts, RTMPTS)
More information about the ffmpeg-cvslog
mailing list