Commit 2f1fdd81 authored by stefano's avatar stefano

Add descriptions for the committed filters.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20375 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 83819591
......@@ -214,6 +214,8 @@ static void draw_slice(AVFilterLink *link, int y, int h)
AVFilter avfilter_vf_crop = {
.name = "crop",
.description = NULL_IF_CONFIG_SMALL("Crop the input video to x:y:width:height."),
.priv_size = sizeof(CropContext),
.query_formats = query_formats,
......
......@@ -41,6 +41,7 @@ static void end_frame(AVFilterLink *link)
AVFilter avfilter_vf_null = {
.name = "null",
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.priv_size = 0,
......
......@@ -87,6 +87,8 @@ static void draw_slice(AVFilterLink *link, int y, int h)
AVFilter avfilter_vf_vflip = {
.name = "vflip",
.description = NULL_IF_CONFIG_SMALL("Flip the input video vertically."),
.priv_size = sizeof(FlipContext),
.inputs = (AVFilterPad[]) {{ .name = "default",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment