diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2022-12-09 15:37:03 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2023-01-09 12:14:47 -0500 |
commit | 94aa70d757af6b0e0919250f9def2a819aa00358 (patch) | |
tree | 69d9aa4f138e8c2f402f54be19f225816dac87e0 /libavformat/protocols.c | |
parent | 5d3f0226ade2fc6d655d0e3dfc08035b4e70df24 (diff) | |
download | ffmpeg-94aa70d757af6b0e0919250f9def2a819aa00358.tar.gz |
avformat: Rename IPFS to IPFS gateway
It is a URL rewriter for IPFS gateways, not an actual implementation of
IPFS, and naming it as such was both incorrect and misleading.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavformat/protocols.c')
-rw-r--r-- | libavformat/protocols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/protocols.c b/libavformat/protocols.c index 8b7d1b940f..d3a7d4310b 100644 --- a/libavformat/protocols.c +++ b/libavformat/protocols.c @@ -72,8 +72,8 @@ extern const URLProtocol ff_libsrt_protocol; extern const URLProtocol ff_libssh_protocol; extern const URLProtocol ff_libsmbclient_protocol; extern const URLProtocol ff_libzmq_protocol; -extern const URLProtocol ff_ipfs_protocol; -extern const URLProtocol ff_ipns_protocol; +extern const URLProtocol ff_ipfs_gateway_protocol; +extern const URLProtocol ff_ipns_gateway_protocol; #include "libavformat/protocol_list.c" |