diff options
| author | Michael Forney <mforney@mforney.org> | 2018-04-25 16:02:53 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2018-05-10 12:30:59 -0700 |
| commit | f8f4562b49cd6c59b0a3384335497dc1077b9621 (patch) | |
| tree | c7817ec20e7f8925bdd74d80aa7af22cb65bd2c2 /pkg/ffmpeg/protocols.awk | |
| parent | cc4725802a003e8667f7f57a14d9ad3e168fc24e (diff) | |
ffmpeg: Update to 4.0
Diffstat (limited to 'pkg/ffmpeg/protocols.awk')
| -rw-r--r-- | pkg/ffmpeg/protocols.awk | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/pkg/ffmpeg/protocols.awk b/pkg/ffmpeg/protocols.awk deleted file mode 100644 index 8a0bbb08..00000000 --- a/pkg/ffmpeg/protocols.awk +++ /dev/null @@ -1,60 +0,0 @@ -/^#define/ && $3 { - cfg[$2] = 1 -} - -func proto(name) { - if (cfg["CONFIG_" toupper(name) "_PROTOCOL"]) - print "&ff_" name "_protocol," -} - -END { - print "static const URLProtocol *url_protocols[] = {" - proto("async") - proto("bluray") - proto("cache") - proto("concat") - proto("crypto") - proto("data") - proto("ffrtmpcrypt") - proto("ffrtmphttp") - proto("file") - proto("ftp") - proto("gopher") - proto("hls") - proto("http") - proto("httpproxy") - proto("https") - proto("icecast") - proto("mmsh") - proto("mmst") - proto("md5") - proto("pipe") - proto("prompeg") - proto("rtmp") - proto("rtmpe") - proto("rtmps") - proto("rtmpt") - proto("rtmpte") - proto("rtmpts") - proto("rtp") - proto("sctp") - proto("srtp") - proto("subfile") - proto("tee") - proto("tcp") - proto("tls_gnutls") - proto("tls_schannel") - proto("tls_securetransport") - proto("tls_openssl") - proto("udp") - proto("udplite") - proto("unix") - proto("librtmp") - proto("librtmpe") - proto("librtmps") - proto("librtmpt") - proto("librtmpte") - proto("libssh") - proto("libsmbclient") - print "NULL};" -} |
