Originally committed as revision 20375 to svn://svn.ffmpeg.org/ffmpeg/trunk
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,
AVFilter avfilter_vf_null = {
.name = "null",
+ .description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.priv_size = 0,
AVFilter avfilter_vf_vflip = {
.name = "vflip",
+ .description = NULL_IF_CONFIG_SMALL("Flip the input video vertically."),
+
.priv_size = sizeof(FlipContext),
.inputs = (AVFilterPad[]) {{ .name = "default",