FFmpeg
protocols.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "config.h"
20 
21 #include "libavutil/avstring.h"
22 #include "libavutil/mem.h"
23 
24 #include "url.h"
25 
26 extern const URLProtocol ff_async_protocol;
27 extern const URLProtocol ff_bluray_protocol;
28 extern const URLProtocol ff_cache_protocol;
29 extern const URLProtocol ff_concat_protocol;
30 extern const URLProtocol ff_crypto_protocol;
31 extern const URLProtocol ff_data_protocol;
34 extern const URLProtocol ff_file_protocol;
35 extern const URLProtocol ff_ftp_protocol;
36 extern const URLProtocol ff_gopher_protocol;
37 extern const URLProtocol ff_hls_protocol;
38 extern const URLProtocol ff_http_protocol;
40 extern const URLProtocol ff_https_protocol;
41 extern const URLProtocol ff_icecast_protocol;
42 extern const URLProtocol ff_mmsh_protocol;
43 extern const URLProtocol ff_mmst_protocol;
44 extern const URLProtocol ff_md5_protocol;
45 extern const URLProtocol ff_pipe_protocol;
46 extern const URLProtocol ff_prompeg_protocol;
47 extern const URLProtocol ff_rtmp_protocol;
48 extern const URLProtocol ff_rtmpe_protocol;
49 extern const URLProtocol ff_rtmps_protocol;
50 extern const URLProtocol ff_rtmpt_protocol;
51 extern const URLProtocol ff_rtmpte_protocol;
52 extern const URLProtocol ff_rtmpts_protocol;
53 extern const URLProtocol ff_rtp_protocol;
54 extern const URLProtocol ff_sctp_protocol;
55 extern const URLProtocol ff_srtp_protocol;
56 extern const URLProtocol ff_subfile_protocol;
57 extern const URLProtocol ff_tee_protocol;
58 extern const URLProtocol ff_tcp_protocol;
59 extern const URLProtocol ff_tls_protocol;
60 extern const URLProtocol ff_udp_protocol;
61 extern const URLProtocol ff_udplite_protocol;
62 extern const URLProtocol ff_unix_protocol;
63 extern const URLProtocol ff_librtmp_protocol;
68 extern const URLProtocol ff_libsrt_protocol;
69 extern const URLProtocol ff_libssh_protocol;
71 
72 #include "libavformat/protocol_list.c"
73 
75 {
76  int i;
77 
78  /* find the protocol that corresponds to prev */
79  for (i = 0; prev && url_protocols[i]; i++) {
80  if (url_protocols[i]->priv_data_class == prev) {
81  i++;
82  break;
83  }
84  }
85 
86  /* find next protocol with priv options */
87  for (; url_protocols[i]; i++)
88  if (url_protocols[i]->priv_data_class)
89  return url_protocols[i]->priv_data_class;
90  return NULL;
91 }
92 
93 
94 const char *avio_enum_protocols(void **opaque, int output)
95 {
96  const URLProtocol **p = *opaque;
97 
98  p = p ? p + 1 : url_protocols;
99  *opaque = p;
100  if (!*p) {
101  *opaque = NULL;
102  return NULL;
103  }
104  if ((output && (*p)->url_write) || (!output && (*p)->url_read))
105  return (*p)->name;
106  return avio_enum_protocols(opaque, output);
107 }
108 
109 const URLProtocol **ffurl_get_protocols(const char *whitelist,
110  const char *blacklist)
111 {
112  const URLProtocol **ret;
113  int i, ret_idx = 0;
114 
115  ret = av_mallocz_array(FF_ARRAY_ELEMS(url_protocols), sizeof(*ret));
116  if (!ret)
117  return NULL;
118 
119  for (i = 0; url_protocols[i]; i++) {
120  const URLProtocol *up = url_protocols[i];
121 
122  if (whitelist && *whitelist && !av_match_name(up->name, whitelist))
123  continue;
124  if (blacklist && *blacklist && av_match_name(up->name, blacklist))
125  continue;
126 
127  ret[ret_idx++] = up;
128  }
129 
130  return ret;
131 }
ff_librtmpte_protocol
const URLProtocol ff_librtmpte_protocol
Definition: librtmp.c:396
ff_md5_protocol
const URLProtocol ff_md5_protocol
Definition: md5proto.c:90
ff_crypto_protocol
const URLProtocol ff_crypto_protocol
Definition: crypto.c:396
output
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce output
Definition: filter_design.txt:225
ff_librtmpt_protocol
const URLProtocol ff_librtmpt_protocol
Definition: librtmp.c:366
ff_subfile_protocol
const URLProtocol ff_subfile_protocol
Definition: subfile.c:149
ff_rtmpte_protocol
const URLProtocol ff_rtmpte_protocol
ff_sctp_protocol
const URLProtocol ff_sctp_protocol
Definition: sctp.c:362
av_mallocz_array
void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.c:191
ff_udplite_protocol
const URLProtocol ff_udplite_protocol
Definition: udp.c:1101
ff_mmsh_protocol
const URLProtocol ff_mmsh_protocol
Definition: mmsh.c:412
URLProtocol
Definition: url.h:54
ff_rtmpt_protocol
const URLProtocol ff_rtmpt_protocol
ff_httpproxy_protocol
const URLProtocol ff_httpproxy_protocol
ff_ftp_protocol
const URLProtocol ff_ftp_protocol
Definition: ftp.c:1110
ff_cache_protocol
const URLProtocol ff_cache_protocol
Definition: cache.c:335
ff_data_protocol
const URLProtocol ff_data_protocol
Definition: data_uri.c:112
avio_enum_protocols
const char * avio_enum_protocols(void **opaque, int output)
Iterate through names of available protocols.
Definition: protocols.c:94
ff_librtmps_protocol
const URLProtocol ff_librtmps_protocol
Definition: librtmp.c:411
ff_libsrt_protocol
const URLProtocol ff_libsrt_protocol
Definition: libsrt.c:652
ff_concat_protocol
const URLProtocol ff_concat_protocol
Definition: concat.c:190
ff_bluray_protocol
const URLProtocol ff_bluray_protocol
Definition: bluray.c:227
ffurl_get_protocols
const URLProtocol ** ffurl_get_protocols(const char *whitelist, const char *blacklist)
Construct a list of protocols matching a given whitelist and/or blacklist.
Definition: protocols.c:109
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
ff_rtmpts_protocol
const URLProtocol ff_rtmpts_protocol
NULL
#define NULL
Definition: coverity.c:32
ff_libssh_protocol
const URLProtocol ff_libssh_protocol
Definition: libssh.c:492
ff_hls_protocol
const URLProtocol ff_hls_protocol
Definition: hlsproto.c:313
ff_rtmp_protocol
const URLProtocol ff_rtmp_protocol
ff_mmst_protocol
const URLProtocol ff_mmst_protocol
Definition: mmst.c:632
ff_async_protocol
const URLProtocol ff_async_protocol
Definition: async.c:482
ff_icecast_protocol
const URLProtocol ff_icecast_protocol
Definition: icecast.c:212
ff_file_protocol
const URLProtocol ff_file_protocol
ff_ffrtmphttp_protocol
const URLProtocol ff_ffrtmphttp_protocol
Definition: rtmphttp.c:276
URLProtocol::name
const char * name
Definition: url.h:55
ff_rtmps_protocol
const URLProtocol ff_rtmps_protocol
ff_librtmp_protocol
const URLProtocol ff_librtmp_protocol
Definition: librtmp.c:351
ff_librtmpe_protocol
const URLProtocol ff_librtmpe_protocol
Definition: librtmp.c:381
ff_http_protocol
const URLProtocol ff_http_protocol
ff_rtmpe_protocol
const URLProtocol ff_rtmpe_protocol
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
ff_prompeg_protocol
const URLProtocol ff_prompeg_protocol
Definition: prompeg.c:473
url.h
ff_tcp_protocol
const URLProtocol ff_tcp_protocol
Definition: tcp.c:313
ff_pipe_protocol
const URLProtocol ff_pipe_protocol
ff_https_protocol
const URLProtocol ff_https_protocol
ff_tee_protocol
const URLProtocol ff_tee_protocol
Definition: teeproto.c:139
ret
ret
Definition: filter_design.txt:187
ff_rtp_protocol
const URLProtocol ff_rtp_protocol
Definition: rtpproto.c:552
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen_template.c:38
ff_srtp_protocol
const URLProtocol ff_srtp_protocol
Definition: srtpproto.c:135
ff_urlcontext_child_class_next
const AVClass * ff_urlcontext_child_class_next(const AVClass *prev)
Definition: protocols.c:74
config.h
av_match_name
int av_match_name(const char *name, const char *names)
Match instances of a name in a comma-separated list of names.
Definition: avstring.c:344
ff_tls_protocol
const URLProtocol ff_tls_protocol
Definition: tls_gnutls.c:285
mem.h
ff_unix_protocol
const URLProtocol ff_unix_protocol
Definition: unix.c:148
ff_ffrtmpcrypt_protocol
const URLProtocol ff_ffrtmpcrypt_protocol
Definition: rtmpcrypt.c:328
ff_udp_protocol
const URLProtocol ff_udp_protocol
Definition: udp.c:1089
ff_gopher_protocol
const URLProtocol ff_gopher_protocol
Definition: gopher.c:117
avstring.h
ff_libsmbclient_protocol
const URLProtocol ff_libsmbclient_protocol
Definition: libsmbclient.c:368