Allow pod rendering, as texinfo multitables are not supported by
texi2pod.pl, also improve plain texinfo file readability.
Originally committed as revision 23688 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -254,41 +254,38 @@ faster due to better use of the memory cache. |
| 254 | 254 |
|
| 255 | 255 |
@section unsharp |
| 256 | 256 |
|
| 257 |
-Sharpen or blur the input video. It accepts the following parameters: |
|
| 258 |
- |
|
| 259 |
-@multitable @columnfractions .2 .5 .1 .1 .1 |
|
| 260 |
-@headitem Name @tab Description @tab Min @tab Max @tab Default |
|
| 261 |
-@item @var{luma_msize_x}
|
|
| 262 |
-@tab Luma matrix horizontal size |
|
| 263 |
-@tab 3 |
|
| 264 |
-@tab 13 |
|
| 265 |
-@tab 5 |
|
| 266 |
-@item @var{luma_msize_y}
|
|
| 267 |
-@tab Luma matrix vertical size |
|
| 268 |
-@tab 3 |
|
| 269 |
-@tab 13 |
|
| 270 |
-@tab 5 |
|
| 271 |
-@item @var{luma_amount}
|
|
| 272 |
-@tab Luma effect strength |
|
| 273 |
-@tab -2.0 |
|
| 274 |
-@tab 5.0 |
|
| 275 |
-@tab 1.0 |
|
| 276 |
-@item @var{chroma_msize_x}
|
|
| 277 |
-@tab Chroma matrix horizontal size |
|
| 278 |
-@tab 3 |
|
| 279 |
-@tab 13 |
|
| 280 |
-@tab 0 |
|
| 281 |
-@item @var{chroma_msize_y}
|
|
| 282 |
-@tab Chroma matrix vertical size |
|
| 283 |
-@tab 3 |
|
| 284 |
-@tab 13 |
|
| 285 |
-@tab 0 |
|
| 286 |
-@item @var{chroma_amount}
|
|
| 287 |
-@tab Chroma effect strength |
|
| 288 |
-@tab -2.0 |
|
| 289 |
-@tab 5.0 |
|
| 290 |
-@tab 0.0 |
|
| 291 |
-@end multitable |
|
| 257 |
+Sharpen or blur the input video. |
|
| 258 |
+ |
|
| 259 |
+It accepts the following parameters: |
|
| 260 |
+@var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
|
|
| 261 |
+ |
|
| 262 |
+@table @option |
|
| 263 |
+ |
|
| 264 |
+@item luma_msize_x |
|
| 265 |
+Set the luma matrix horizontal size. It can be an integer between 3 |
|
| 266 |
+and 13, default value is 5. |
|
| 267 |
+ |
|
| 268 |
+@item luma_msize_y |
|
| 269 |
+Set the luma matrix vertical size. It can be an integer between 3 |
|
| 270 |
+and 13, default value is 5. |
|
| 271 |
+ |
|
| 272 |
+@item luma_amount |
|
| 273 |
+Set the luma effect strength. It can be a float number between -2.0 |
|
| 274 |
+and 5.0, default value is 1.0. |
|
| 275 |
+ |
|
| 276 |
+@item chroma_msize_x |
|
| 277 |
+Set the chroma matrix horizontal size. It can be an integer between 3 |
|
| 278 |
+and 13, default value is 0. |
|
| 279 |
+ |
|
| 280 |
+@item chroma_msize_y |
|
| 281 |
+Set the chroma matrix vertical size. It can be an integer between 3 |
|
| 282 |
+and 13, default value is 0. |
|
| 283 |
+ |
|
| 284 |
+@item chroma_amount |
|
| 285 |
+Set the chroma effect strength. It can be a float number between -2.0 |
|
| 286 |
+and 5.0, default value is 0.0. |
|
| 287 |
+ |
|
| 288 |
+@end table |
|
| 292 | 289 |
|
| 293 | 290 |
Negative values for the amount will blur the input video, while positive |
| 294 | 291 |
values will sharpen. All parameters are optional and default to the |