diff options
author | Andriy Gelman <andriy.gelman@gmail.com> | 2020-03-08 17:25:31 -0400 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-03-09 22:07:17 +0100 |
commit | 1676d0fb25c6851d0750ed6926b8205ed20973eb (patch) | |
tree | 8e7d868dd46f562904e0e1147241ca9e8d8e2340 /libavformat/protocols.c | |
parent | d99f3dc6b211509d9f6bbb82bbb59bff86a9e3a5 (diff) | |
download | ffmpeg-1676d0fb25c6851d0750ed6926b8205ed20973eb.tar.gz |
avformat: Add AMQP version 0-9-1 protocol support
Supports connecting to a RabbitMQ broker via AMQP version 0-9-1.
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/protocols.c')
-rw-r--r-- | libavformat/protocols.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/protocols.c b/libavformat/protocols.c index 29fb99e7fa..f1b8eab0fd 100644 --- a/libavformat/protocols.c +++ b/libavformat/protocols.c @@ -60,6 +60,7 @@ extern const URLProtocol ff_tls_protocol; extern const URLProtocol ff_udp_protocol; extern const URLProtocol ff_udplite_protocol; extern const URLProtocol ff_unix_protocol; +extern const URLProtocol ff_libamqp_protocol; extern const URLProtocol ff_librtmp_protocol; extern const URLProtocol ff_librtmpe_protocol; extern const URLProtocol ff_librtmps_protocol; |