summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-09-13 14:35:57 +0200
committerwm4 <wm4@nowhere>2019-09-13 14:35:57 +0200
commit066746f8bd79cb3bbd61ade357c52947fd5df4b6 (patch)
tree012ced85bfa78f7d169dedcb84f8c4b5c966c4fc
parentd9edbcf7a32dd3e3631be621f5758c42493d9de8 (diff)
downloadmpv-examples-066746f8bd79cb3bbd61ade357c52947fd5df4b6.tar.bz2
mpv-examples-066746f8bd79cb3bbd61ade357c52947fd5df4b6.tar.xz
README: mpv_set_option() is semi deprecated/useless
-rw-r--r--libmpv/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpv/README.md b/libmpv/README.md
index 68480ae..b252668 100644
--- a/libmpv/README.md
+++ b/libmpv/README.md
@@ -9,9 +9,9 @@ systems, this is in `/usr/include/mpv/client.h`.)
libmpv merely gives you access to mpv's command interface, which is documented
here:
-* Options (`mpv_set_option()` and friends): http://mpv.io/manual/master/#options
* Commands (`mpv_command()` and friends): http://mpv.io/manual/master/#list-of-input-commands
* Properties (`mpv_set_property()` and friends): http://mpv.io/manual/master/#properties
+* Options (`mpv_set_property()` and friends, `mpv_set_option()` in obscure cases): http://mpv.io/manual/master/#options
Essentially everything is done with them, including loading a file, retrieving
playback progress, and so on.