diff options
author | wm4 <wm4@nowhere> | 2015-11-17 21:07:41 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-11-17 21:21:19 +0100 |
commit | 0ec35fa111391b8069640ba2f616746a1b5530a5 (patch) | |
tree | e5356e8ab396e1c370a7784843f3101d3195469f /DOCS/man | |
parent | 25fe9e89e7db1658acac84ec8ac0a292b2e86165 (diff) | |
download | mpv-0ec35fa111391b8069640ba2f616746a1b5530a5.tar.bz2 mpv-0ec35fa111391b8069640ba2f616746a1b5530a5.tar.xz |
videotoolbox: make decoder format customizable
Because apparently there's no ideal universally working format.
The weird OpenGL texture format for kCVPixelFormatType_32BGRA is from:
http://stackoverflow.com/questions/22077544/draw-an-iosurface-to-an-opengl-context
(Which apparently got it from the linked Apple example code.)
Diffstat (limited to 'DOCS/man')
-rw-r--r-- | DOCS/man/options.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst index fe76296d5f..cdc0e75094 100644 --- a/DOCS/man/options.rst +++ b/DOCS/man/options.rst @@ -618,6 +618,14 @@ Video to temporarily set the ``hwdec`` option just during OpenGL context initialization with ``mpv_opengl_cb_init_gl()``. +``--videotoolbox-format=<name>`` + Set the internal pixel format used by ``--hwdec=videotoolbox`` on OSX. The + choice of the format can influence performance considerably. On the other + hand, there doesn't appear to be a good way to detect the best format for + the given hardware. ``nv12``, the default works better on modern hardware, + while ``uyvy422`` appears to be better for old hardware. ``rgb0`` also + works. + ``--panscan=<0.0-1.0>`` Enables pan-and-scan functionality (cropping the sides of e.g. a 16:9 video to make it fit a 4:3 display without black bands). The range |