2016-02-19 09:39:29 +00:00
|
|
|
/*
|
2016-02-29 16:50:39 +00:00
|
|
|
* This file is part of FFmpeg.
|
2016-02-19 09:39:29 +00:00
|
|
|
*
|
2016-02-29 16:50:39 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2016-02-19 09:39:29 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2016-02-29 16:50:39 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2016-02-19 09:39:29 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2016-02-29 16:50:39 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2016-02-19 09:39:29 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2016-02-19 10:17:22 +00:00
|
|
|
#include "libavutil/avstring.h"
|
2022-07-31 09:12:41 +00:00
|
|
|
#include "libavutil/log.h"
|
2016-02-19 10:17:22 +00:00
|
|
|
#include "libavutil/mem.h"
|
|
|
|
|
2016-02-19 09:39:29 +00:00
|
|
|
#include "url.h"
|
|
|
|
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_async_protocol;
|
|
|
|
extern const URLProtocol ff_bluray_protocol;
|
|
|
|
extern const URLProtocol ff_cache_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_concat_protocol;
|
2021-06-29 15:07:44 +00:00
|
|
|
extern const URLProtocol ff_concatf_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_crypto_protocol;
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_data_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_ffrtmpcrypt_protocol;
|
|
|
|
extern const URLProtocol ff_ffrtmphttp_protocol;
|
|
|
|
extern const URLProtocol ff_file_protocol;
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_ftp_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_gopher_protocol;
|
2021-02-28 22:47:05 +00:00
|
|
|
extern const URLProtocol ff_gophers_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_hls_protocol;
|
|
|
|
extern const URLProtocol ff_http_protocol;
|
|
|
|
extern const URLProtocol ff_httpproxy_protocol;
|
|
|
|
extern const URLProtocol ff_https_protocol;
|
|
|
|
extern const URLProtocol ff_icecast_protocol;
|
|
|
|
extern const URLProtocol ff_mmsh_protocol;
|
|
|
|
extern const URLProtocol ff_mmst_protocol;
|
|
|
|
extern const URLProtocol ff_md5_protocol;
|
|
|
|
extern const URLProtocol ff_pipe_protocol;
|
2016-06-02 14:28:13 +00:00
|
|
|
extern const URLProtocol ff_prompeg_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_rtmp_protocol;
|
|
|
|
extern const URLProtocol ff_rtmpe_protocol;
|
|
|
|
extern const URLProtocol ff_rtmps_protocol;
|
|
|
|
extern const URLProtocol ff_rtmpt_protocol;
|
|
|
|
extern const URLProtocol ff_rtmpte_protocol;
|
|
|
|
extern const URLProtocol ff_rtmpts_protocol;
|
|
|
|
extern const URLProtocol ff_rtp_protocol;
|
|
|
|
extern const URLProtocol ff_sctp_protocol;
|
|
|
|
extern const URLProtocol ff_srtp_protocol;
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_subfile_protocol;
|
2016-07-18 12:42:22 +00:00
|
|
|
extern const URLProtocol ff_tee_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_tcp_protocol;
|
2017-05-23 08:15:28 +00:00
|
|
|
extern const URLProtocol ff_tls_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_udp_protocol;
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_udplite_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_unix_protocol;
|
2020-03-08 21:25:31 +00:00
|
|
|
extern const URLProtocol ff_libamqp_protocol;
|
2021-02-28 19:56:55 +00:00
|
|
|
extern const URLProtocol ff_librist_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
extern const URLProtocol ff_librtmp_protocol;
|
|
|
|
extern const URLProtocol ff_librtmpe_protocol;
|
|
|
|
extern const URLProtocol ff_librtmps_protocol;
|
|
|
|
extern const URLProtocol ff_librtmpt_protocol;
|
|
|
|
extern const URLProtocol ff_librtmpte_protocol;
|
2018-03-26 15:37:49 +00:00
|
|
|
extern const URLProtocol ff_libsrt_protocol;
|
2016-02-29 16:50:39 +00:00
|
|
|
extern const URLProtocol ff_libssh_protocol;
|
|
|
|
extern const URLProtocol ff_libsmbclient_protocol;
|
2019-07-30 18:39:32 +00:00
|
|
|
extern const URLProtocol ff_libzmq_protocol;
|
2022-04-06 12:00:56 +00:00
|
|
|
extern const URLProtocol ff_ipfs_protocol;
|
|
|
|
extern const URLProtocol ff_ipns_protocol;
|
2016-02-19 09:39:29 +00:00
|
|
|
|
2016-03-20 09:00:58 +00:00
|
|
|
#include "libavformat/protocol_list.c"
|
2016-02-19 09:49:10 +00:00
|
|
|
|
2020-05-27 13:34:07 +00:00
|
|
|
const AVClass *ff_urlcontext_child_class_iterate(void **iter)
|
|
|
|
{
|
|
|
|
const AVClass *ret = NULL;
|
|
|
|
uintptr_t i;
|
|
|
|
|
|
|
|
for (i = (uintptr_t)*iter; url_protocols[i]; i++) {
|
|
|
|
ret = url_protocols[i]->priv_data_class;
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
*iter = (void*)(uintptr_t)(url_protocols[i] ? i + 1 : i);
|
|
|
|
return ret;
|
|
|
|
}
|
2016-02-19 09:59:46 +00:00
|
|
|
|
2016-02-19 09:49:10 +00:00
|
|
|
const char *avio_enum_protocols(void **opaque, int output)
|
|
|
|
{
|
2021-11-25 14:40:16 +00:00
|
|
|
uintptr_t i;
|
2016-02-19 09:49:10 +00:00
|
|
|
|
2021-11-25 14:40:16 +00:00
|
|
|
for (i = (uintptr_t)*opaque; url_protocols[i]; i++) {
|
|
|
|
const URLProtocol *p = url_protocols[i];
|
|
|
|
if ((output && p->url_write) || (!output && p->url_read)) {
|
|
|
|
*opaque = (void*)(uintptr_t)(i + 1);
|
|
|
|
return p->name;
|
|
|
|
}
|
2016-02-19 09:49:10 +00:00
|
|
|
}
|
2021-11-25 14:40:16 +00:00
|
|
|
*opaque = NULL;
|
|
|
|
return NULL;
|
2016-02-19 09:49:10 +00:00
|
|
|
}
|
2016-02-19 10:17:22 +00:00
|
|
|
|
2020-01-30 09:03:48 +00:00
|
|
|
const AVClass *avio_protocol_get_class(const char *name)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; url_protocols[i]; i++) {
|
|
|
|
if (!strcmp(url_protocols[i]->name, name))
|
|
|
|
return url_protocols[i]->priv_data_class;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-19 10:17:22 +00:00
|
|
|
const URLProtocol **ffurl_get_protocols(const char *whitelist,
|
|
|
|
const char *blacklist)
|
|
|
|
{
|
|
|
|
const URLProtocol **ret;
|
|
|
|
int i, ret_idx = 0;
|
|
|
|
|
2021-09-14 19:31:53 +00:00
|
|
|
ret = av_calloc(FF_ARRAY_ELEMS(url_protocols), sizeof(*ret));
|
2016-02-19 10:17:22 +00:00
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; url_protocols[i]; i++) {
|
|
|
|
const URLProtocol *up = url_protocols[i];
|
|
|
|
|
|
|
|
if (whitelist && *whitelist && !av_match_name(up->name, whitelist))
|
|
|
|
continue;
|
|
|
|
if (blacklist && *blacklist && av_match_name(up->name, blacklist))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret[ret_idx++] = up;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|