summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2012-08-23 12:32:13 +0200
committerwm4 <wm4@nowhere>2012-08-23 13:13:53 +0200
commit2adc81f0a2459a565437009ff6f4ace1dca3d46c (patch)
tree4fb92807ad61980fac5230d670af374aaaa9d082 /DOCS
parent2e6450c7cc88f1e39034ac111e9b54a421bca661 (diff)
downloadmpv-2adc81f0a2459a565437009ff6f4ace1dca3d46c.tar.bz2
mpv-2adc81f0a2459a565437009ff6f4ace1dca3d46c.tar.xz
vf_dlopen: add a generic filter to load external filters
Usage: -vf dlopen=filename.so:args... Examples of such filters are provided in TOOLS/vf_dlopen/
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/vf.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/DOCS/man/en/vf.rst b/DOCS/man/en/vf.rst
index 2a93e8ec78..434c2faec3 100644
--- a/DOCS/man/en/vf.rst
+++ b/DOCS/man/en/vf.rst
@@ -1405,3 +1405,23 @@ fixpts[=options]
*NOTE*: Using this filter together with any sort of seeking (including
``--ss``) may make demons fly out of your nose.
+
+dlopen=dll[:a0[:a1[:a2[:a3]]]]
+ Loads an external library to filter the image. The library interface
+ is the vf_dlopen interface specified using libmpcodecs/vf_dlopen.h.
+
+ dll=<library>
+ Specify the library to load. This may require a full file system path
+ in some cases! This argument is required.
+
+ a0=<string>
+ Specify the first parameter to pass to the library.
+
+ a1=<string>
+ Specify the second parameter to pass to the library.
+
+ a2=<string>
+ Specify the third parameter to pass to the library.
+
+ a3=<string>
+ Specify the fourth parameter to pass to the library.