AVFilter ff_af_asyncts = {
.name = "asyncts",
- .description = NULL_IF_CONFIG_SMALL("Sync audio data to timestamps"),
+ .description = NULL_IF_CONFIG_SMALL("Sync audio data to timestamps."),
.init = init,
.uninit = uninit,
.priv_size = sizeof(ASyncContext),
AVFilter ff_vf_realtime = {
.name = "realtime",
- .description = NULL_IF_CONFIG_SMALL("Slow down filtering to match realtime"),
+ .description = NULL_IF_CONFIG_SMALL("Slow down filtering to match realtime."),
.priv_size = sizeof(RealtimeContext),
.priv_class = &realtime_class,
.inputs = avfilter_vf_realtime_inputs,
AVFilter ff_af_arealtime = {
.name = "arealtime",
- .description = NULL_IF_CONFIG_SMALL("Slow down filtering to match realtime"),
+ .description = NULL_IF_CONFIG_SMALL("Slow down filtering to match realtime."),
.priv_size = sizeof(RealtimeContext),
.priv_class = &arealtime_class,
.inputs = arealtime_inputs,
AVFilter ff_vf_codecview = {
.name = "codecview",
- .description = NULL_IF_CONFIG_SMALL("Visualize information about some codecs"),
+ .description = NULL_IF_CONFIG_SMALL("Visualize information about some codecs."),
.priv_size = sizeof(CodecViewContext),
.query_formats = query_formats,
.inputs = codecview_inputs,
AVFilter ff_vf_cover_rect = {
.name = "cover_rect",
- .description = NULL_IF_CONFIG_SMALL("Find and cover a user specified object"),
+ .description = NULL_IF_CONFIG_SMALL("Find and cover a user specified object."),
.priv_size = sizeof(CoverContext),
.init = init,
.uninit = uninit,
AVFilter ff_vf_fftfilt = {
.name = "fftfilt",
- .description = NULL_IF_CONFIG_SMALL("Apply arbitrary expressions to samples in frequency domain"),
+ .description = NULL_IF_CONFIG_SMALL("Apply arbitrary expressions to samples in frequency domain."),
.priv_size = sizeof(FFTFILTContext),
.priv_class = &fftfilt_class,
.inputs = fftfilt_inputs,
AVFilter ff_vf_find_rect = {
.name = "find_rect",
- .description = NULL_IF_CONFIG_SMALL("Find a user specified object"),
+ .description = NULL_IF_CONFIG_SMALL("Find a user specified object."),
.priv_size = sizeof(FOCContext),
.init = init,
.uninit = uninit,
{ NULL }
};
-DEFINE_NEIGHBOR_FILTER(erosion, "Apply erosion effect");
+DEFINE_NEIGHBOR_FILTER(erosion, "Apply erosion effect.");
#endif /* CONFIG_EROSION_FILTER */
{ NULL }
};
-DEFINE_NEIGHBOR_FILTER(dilation, "Apply dilation effect");
+DEFINE_NEIGHBOR_FILTER(dilation, "Apply dilation effect.");
#endif /* CONFIG_DILATION_FILTER */
{ NULL }
};
-DEFINE_NEIGHBOR_FILTER(deflate, "Apply deflate effect");
+DEFINE_NEIGHBOR_FILTER(deflate, "Apply deflate effect.");
#endif /* CONFIG_DEFLATE_FILTER */
{ NULL }
};
-DEFINE_NEIGHBOR_FILTER(inflate, "Apply inflate effect");
+DEFINE_NEIGHBOR_FILTER(inflate, "Apply inflate effect.");
#endif /* CONFIG_INFLATE_FILTER */
AVFilter ff_vf_showpalette = {
.name = "showpalette",
- .description = NULL_IF_CONFIG_SMALL("Display frame palette"),
+ .description = NULL_IF_CONFIG_SMALL("Display frame palette."),
.priv_size = sizeof(ShowPaletteContext),
.query_formats = query_formats,
.inputs = showpalette_inputs,
AVFilter ff_vf_shuffleframes = {
.name = "shuffleframes",
- .description = NULL_IF_CONFIG_SMALL("Shuffle video frames"),
+ .description = NULL_IF_CONFIG_SMALL("Shuffle video frames."),
.priv_size = sizeof(ShuffleFramesContext),
.priv_class = &shuffleframes_class,
.init = init,
AVFilter ff_vf_shuffleplanes = {
.name = "shuffleplanes",
- .description = NULL_IF_CONFIG_SMALL("Shuffle video planes"),
+ .description = NULL_IF_CONFIG_SMALL("Shuffle video planes."),
.priv_size = sizeof(ShufflePlanesContext),
.priv_class = &shuffleplanes_class,