summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-02-15 16:19:19 +0100
committerwm4 <wm4@nowhere>2016-02-15 16:19:19 +0100
commit39ab426f05826a924cc89b362c60c4b7172cf922 (patch)
tree71cf5d7ea5a38d7c45bfdbb7f6073323f83b1eb0 /DOCS
parentb7034db4afcc0a90ff88fb422cd929b2c15f535d (diff)
downloadmpv-39ab426f05826a924cc89b362c60c4b7172cf922.tar.bz2
mpv-39ab426f05826a924cc89b362c60c4b7172cf922.tar.xz
player: add on_preloaded hook
(Limited usefulness.)
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/input.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/DOCS/man/input.rst b/DOCS/man/input.rst
index 76678c2b3c..11a8f0021f 100644
--- a/DOCS/man/input.rst
+++ b/DOCS/man/input.rst
@@ -765,6 +765,17 @@ The following hooks are currently defined:
``file-local-options/<option name>``. The player will wait until all
hooks are run.
+``on_preloaded``
+ Called after a file has been opened, and before tracks are selected and
+ decoders are created. This has some usefulness if an API users wants
+ to select tracks manually, based on the set of available tracks. It's
+ also useful to initialize ``--lavfi-complex`` in a specific way by API,
+ without having to "probe" the available streams at first.
+
+ Note that this does not yet apply default track selection. Which operations
+ exactly can be done and not be done, and what information is available and
+ what is not yet available yet, is all subject to change.
+
``on_unload``
Run before closing a file, and before actually uninitializing
everything. It's not possible to resume playback in this state.