5693
|
1 VideoOutPlugins - Video Filters
|
|
2 ===============
|
|
3
|
|
4 video filters are plugin-like code modules implementing the interface
|
|
5 defined in vf.h
|
|
6
|
|
7 basically it means video output manipulation, ie. these plugins can
|
|
8 modify the image and the image properties (size, colorspace etc) between
|
5695
|
9 the video decoders (vd.h) and output layer (libvo or video encoders)
|
5693
|
10
|
|
11 the actual API is a mixture of the video decoder (vd.h) and libvo
|
|
12 (video_out.h) APIs.
|
|
13
|
|
14 the main differences:
|
|
15 - vf plugins may be "loaded" multiple times, with different parameters
|
|
16 and context - it's new in mplayer, old APIs weren't reentrant
|
|
17 - vf plugins don't have to implement all functions - all funcs has
|
5695
|
18 'fallback' version, so the plugins only override these if want
|
5693
|
19 - each vf plugin has its own get_image context, and they can interchange
|
|
20 images/buffers using these get_image/put_image calls.
|
|
21
|
|
22 API details:
|
|
23 -- TO DO -- (see vf.h fpr API and vf_*.c for examples)
|
|
24
|
|
25 Current plugins:
|
|
26 ================
|
|
27
|
|
28 -vop crop[=w:h:x:y]
|
|
29 Simple cropping plugin.
|
|
30 w,h (cropped width,height) defaults to original width,height
|
|
31 x,y (position of cropped subimage on the original image) defaults to center
|
|
32 MPI: EXPORT only, using stride manipulation
|
5695
|
33
|
5693
|
34 -vop expand[=w:h:x:y:o]
|
|
35 Expanding _and_ (optional) OSD rendering plugin.
|
6004
|
36 w,h (expanded width,height) defaults (-1) to original width,height
|
|
37 x,y (position of original image on the expanded image) defaults (-1) to center
|
|
38 o (0=disable/1=enable SUB/OSD rendering) defaults (0) to disabled
|
5693
|
39 MPI: DR (if possible) or copy
|
|
40 Special: mpcodecs core uses it to solve stride restrictions between filters
|
|
41 mencoder uses (autoload) it to render SUB/OSD
|
5695
|
42
|
5693
|
43 -vop flip
|
5905
|
44 Flips image upside-down (vertical mirroring)
|
5693
|
45 No parameters.
|
|
46 MPI: DR (if possible) or EXPORT, using stride manipulation
|
|
47 Special: dec_video autoloads it when flipping is required and libvo can't do
|
|
48
|
5905
|
49 -vop mirror
|
|
50 Horizontal mirroring
|
|
51 No parameters.
|
|
52 MPI: TEMP
|
|
53
|
|
54 -vop rotate[=x]
|
5697
|
55 Rotate image +/- 90 degrees
|
5905
|
56 Optional 'x' parameter (0..3) controls horizontal and vertical mirroring
|
5697
|
57 MPI: TEMP
|
|
58
|
5693
|
59 -vop scale[=w:h]
|
|
60 Software scaling (zoom) _and_ yuv<->rgb colorspace conversion
|
|
61 w,h (new width/height after scaling) defaults to original width,height
|
|
62 note: if -zoom is used, and underlaying filters (including libvo)
|
|
63 uncapable of scaling, then it defaults to d_width/d_height !
|
6004
|
64 note 2: w/h values -1 means original width/height, 0 means scaled
|
6127
|
65 d_width/d_height. -2/-3 means calculating w or h using the other
|
|
66 dimension and the original (-3) or prescaled (-2) aspect ratio.
|
5693
|
67 MPI: TEMP, accepts stride
|
|
68 Special: dec_video and mpcodecs core autoloads it for colorspace conv.
|
|
69
|
|
70 -vop yuy2
|
|
71 Forced software YV12/I420 -> YUY2 conversion
|
|
72 (usefull for video cards/drivers with slow YV12 but fast YUY2 support)
|
|
73 MPI: TEMP, accepts stride
|
|
74
|
|
75 -vop rgb2bgr[=swap]
|
|
76 RGB 24/32 <-> BGR 24/32 colorspace conversion (default) or
|
|
77 RGB 24/32 <-> RGB 24/32 conversion with R<->B swapping ('swap' option)
|
|
78 MPI: TEMP, accepts stride
|
5905
|
79
|
|
80 -vop palette
|
|
81 RGB/BGR 8 -> RGB/BGR 15/16/24/32 colorspace conversion using palette
|
|
82 MPI: TEMP, accepts stride
|
5693
|
83
|
|
84 -vop format[=fourcc]
|
|
85 _restrict_ the list of supported colorspaces (query-format()) to a single,
|
|
86 given fourcc. The 'fourcc' option defaults to 'yuy2', but may be any
|
|
87 format name, like rgb15, bgr24, yv12 etc...
|
|
88 note again, it does NOT do any conversion, it just limits the _next_
|
|
89 plugins format list.
|
6004
|
90 MPI: passthru
|
5693
|
91
|
|
92 -vop pp[=flags]
|
|
93 Postprocessing filter. (usefull for codecs without built-in
|
|
94 postprocessing, like libmpeg12 or libavcodec)
|
|
95 Flags is a bitmask set of enabled filters (see manpage for -pp details),
|
|
96 defaults to the value of divx_quality (set by -pp commandline option)
|
|
97 MPI: DR (if possible) or TEMP
|
|
98 Special: dec_video autoloads it if -pp option used but codec can't do pp.
|
|
99
|
6020
|
100 -vop lavc[=quality:fps]
|
5905
|
101 Fast software YV12->MPEG1 conversion, usefull for dxr3/dvb drivers
|
|
102 It uses libavcodec. Currently faster and better quality than -vop fame!
|
6020
|
103 Param quality: fixed qscale (1<=quality<32) or bitrate (32<=quality KBits)
|
|
104 Param fps: force output fps (float value). If not give, or 0, it's
|
|
105 autodetected based on height (240,480->29.97fps, others -> 25fps)
|
5905
|
106 MPI: EXPORT special
|
|
107
|
5693
|
108 -vop fame
|
|
109 Fast software YV12->MPEG1 conversion, usefull for dxr3/dvb drivers
|
5905
|
110 It uses libfame.
|
5693
|
111 MPI: EXPORT special
|
|
112
|
6004
|
113 -vop dvbscale[=aspect]
|
|
114 Setup scaling to the optimal values for the DVB card.
|
|
115 (use HW for X-scaling, calc sw Y scaling to keep aspect)
|
|
116 The 'aspect' parameter controls aspect ratio, it should be calculated
|
|
117 as aspect=DVB_HEIGHT*ASPECTRATIO, default is 576*(4/3)=768
|
|
118 (for 16:9 TV set it to 576*(16/9)=1024)
|
6062
|
119 It's only usefull together with expand+scale:
|
6004
|
120 -vop lavc,expand=-1:576:-1:-1:1,scale=-1:0,dvbscale
|
|
121 MPI: passthru
|
|
122
|
6062
|
123 -vop cropdetect
|
|
124 It's a special filter, it doesn't alter the image itself, but detects
|
|
125 (using some kind of heuristics) the black borders/bands of the image,
|
|
126 and prints the optimal -vop crop= parameters to the stdout/console.
|
|
127 MPI: EXPORT
|
6449
|
128
|
6426
|
129 -vop test[=first frame number]
|
|
130 generate various test patterns
|
|
131 MPI: TEMP, accepts stride
|
|
132
|
6449
|
133 -vop noise[=lumaNoise[u][t][h]:chromaNoise[u][t][h]
|
6426
|
134 add noise
|
|
135 0<= lumaNoise, chromaNoise <=100
|
|
136 u uniform noise (gaussian otherwise)
|
|
137 t temporal noise (noise pattern changes between frames)
|
6449
|
138 h high quality (slightly better looking, slightly slower)
|
|
139 MPI: DR (if possible) or TEMP, accepts stride
|
6426
|
140
|