mirror of
https://github.com/mpv-player/mpv
synced 2025-03-01 20:00:37 +00:00
typo fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5696 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
15703cfc2e
commit
144e16a56f
@ -6,7 +6,7 @@ defined in vf.h
|
|||||||
|
|
||||||
basically it means video output manipulation, ie. these plugins can
|
basically it means video output manipulation, ie. these plugins can
|
||||||
modify the image and the image properties (size, colorspace etc) between
|
modify the image and the image properties (size, colorspace etc) between
|
||||||
the video decoders (vd.h) and output plugins (libvo or video encoders)
|
the video decoders (vd.h) and output layer (libvo or video encoders)
|
||||||
|
|
||||||
the actual API is a mixture of the video decoder (vd.h) and libvo
|
the actual API is a mixture of the video decoder (vd.h) and libvo
|
||||||
(video_out.h) APIs.
|
(video_out.h) APIs.
|
||||||
@ -15,7 +15,7 @@ the main differences:
|
|||||||
- vf plugins may be "loaded" multiple times, with different parameters
|
- vf plugins may be "loaded" multiple times, with different parameters
|
||||||
and context - it's new in mplayer, old APIs weren't reentrant
|
and context - it's new in mplayer, old APIs weren't reentrant
|
||||||
- vf plugins don't have to implement all functions - all funcs has
|
- vf plugins don't have to implement all functions - all funcs has
|
||||||
'fallback' version, so teh plugins only override these if want
|
'fallback' version, so the plugins only override these if want
|
||||||
- each vf plugin has its own get_image context, and they can interchange
|
- each vf plugin has its own get_image context, and they can interchange
|
||||||
images/buffers using these get_image/put_image calls.
|
images/buffers using these get_image/put_image calls.
|
||||||
|
|
||||||
@ -30,6 +30,7 @@ Current plugins:
|
|||||||
w,h (cropped width,height) defaults to original width,height
|
w,h (cropped width,height) defaults to original width,height
|
||||||
x,y (position of cropped subimage on the original image) defaults to center
|
x,y (position of cropped subimage on the original image) defaults to center
|
||||||
MPI: EXPORT only, using stride manipulation
|
MPI: EXPORT only, using stride manipulation
|
||||||
|
|
||||||
-vop expand[=w:h:x:y:o]
|
-vop expand[=w:h:x:y:o]
|
||||||
Expanding _and_ (optional) OSD rendering plugin.
|
Expanding _and_ (optional) OSD rendering plugin.
|
||||||
w,h (expanded width,height) defaults to original width,height
|
w,h (expanded width,height) defaults to original width,height
|
||||||
@ -38,6 +39,7 @@ Current plugins:
|
|||||||
MPI: DR (if possible) or copy
|
MPI: DR (if possible) or copy
|
||||||
Special: mpcodecs core uses it to solve stride restrictions between filters
|
Special: mpcodecs core uses it to solve stride restrictions between filters
|
||||||
mencoder uses (autoload) it to render SUB/OSD
|
mencoder uses (autoload) it to render SUB/OSD
|
||||||
|
|
||||||
-vop flip
|
-vop flip
|
||||||
Flips image upside-down.
|
Flips image upside-down.
|
||||||
No parameters.
|
No parameters.
|
||||||
|
Loading…
Reference in New Issue
Block a user