summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2014-06-30 12:49:01 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-06-30 23:20:10 +0200
commitab241c05c8e4b9c08cb8714da7e24082570fa25f (patch)
tree9bf7631f10c5c36be901761f70cc7e6072fb0b81
parent211ca98e9c2ab93672b6cdd117d3729c4716fc3a (diff)
downloadmpv-ab241c05c8e4b9c08cb8714da7e24082570fa25f.tar.bz2
mpv-ab241c05c8e4b9c08cb8714da7e24082570fa25f.tar.xz
options: add --list-protocols option
-rw-r--r--DOCS/man/options.rst3
-rw-r--r--options/options.c2
-rw-r--r--stream/stream.c22
-rw-r--r--stream/stream.h2
4 files changed, 29 insertions, 0 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 7dfc4bf884..b554fecc62 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -1313,6 +1313,9 @@ OPTIONS
``--list-properties``
Print a list of the available properties.
+``--list-protocols``
+ Print a list of the supported protocols.
+
``--load-scripts=<yes|no>``
If set to ``no``, don't auto-load scripts from ``~/.mpv/lua/``.
(Default: ``yes``)
diff --git a/options/options.c b/options/options.c
index 3fdc053c44..bf4db25321 100644
--- a/options/options.c
+++ b/options/options.c
@@ -46,6 +46,7 @@
#include "audio/decode/dec_audio.h"
#include "player/core.h"
#include "player/command.h"
+#include "stream/stream.h"
extern const char mp_help_text[];
@@ -515,6 +516,7 @@ const m_option_t mp_opts[] = {
OPT_SUBSTRUCT("input", input_opts, input_config, 0),
OPT_PRINT("list-properties", property_print_help),
+ OPT_PRINT("list-protocols", stream_print_proto_list),
OPT_PRINT("help", print_help),
OPT_PRINT("h", print_help),
OPT_PRINT("version", print_version),
diff --git a/stream/stream.c b/stream/stream.c
index 6e903bc8ec..31d15fbf97 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -972,3 +972,25 @@ bool stream_manages_timeline(struct stream *s)
{
return stream_control(s, STREAM_CTRL_MANAGES_TIMELINE, NULL) == STREAM_OK;
}
+
+void stream_print_proto_list(struct mp_log *log)
+{
+ int count = 0;
+
+ mp_info(log, "Protocols:\n\n");
+ for (int i = 0; stream_list[i]; i++) {
+ const stream_info_t *stream_info = stream_list[i];
+
+ if (!stream_info->protocols)
+ continue;
+
+ for (int j = 0; stream_info->protocols[j]; j++) {
+ if (*stream_info->protocols[j] == '\0')
+ continue;
+
+ mp_info(log, " %s://\n", stream_info->protocols[j]);
+ count++;
+ }
+ }
+ mp_info(log, "\nTotal: %d protocols\n", count);
+}
diff --git a/stream/stream.h b/stream/stream.h
index 4f8ca6ddae..389a0a56e8 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -251,4 +251,6 @@ char *mp_url_escape(void *talloc_ctx, const char *s, const char *ok);
// stream_file.c
char *mp_file_url_to_filename(void *talloc_ctx, bstr url);
+void stream_print_proto_list(struct mp_log *log);
+
#endif /* MPLAYER_STREAM_H */