mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Add descriptions for the committed filters.
Originally committed as revision 20375 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6b27353cfd
commit
b70bc02279
3 changed files with 5 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue