[FFmpeg-cvslog] lavfi: add missing periods in filter descriptions.

Clément Bœsch git at videolan.org
Sun Apr 14 20:59:33 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sun Apr 14 20:58:31 2013 +0200| [dfac37afd25079532ff430a0f7f1c9bfd33434ff] | committer: Clément Bœsch

lavfi: add missing periods in filter descriptions.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dfac37afd25079532ff430a0f7f1c9bfd33434ff
---

 libavfilter/af_channelsplit.c |    2 +-
 libavfilter/af_join.c         |    2 +-
 libavfilter/vf_fieldmatch.c   |    2 +-
 libavfilter/vf_fps.c          |    2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavfilter/af_channelsplit.c b/libavfilter/af_channelsplit.c
index e3a30d8..c14c676 100644
--- a/libavfilter/af_channelsplit.c
+++ b/libavfilter/af_channelsplit.c
@@ -137,7 +137,7 @@ static const AVFilterPad avfilter_af_channelsplit_inputs[] = {
 
 AVFilter avfilter_af_channelsplit = {
     .name           = "channelsplit",
-    .description    = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams"),
+    .description    = NULL_IF_CONFIG_SMALL("Split audio into per-channel streams."),
     .priv_size      = sizeof(ChannelSplitContext),
     .priv_class     = &channelsplit_class,
 
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c
index 88aef10..cea448b 100644
--- a/libavfilter/af_join.c
+++ b/libavfilter/af_join.c
@@ -515,7 +515,7 @@ static const AVFilterPad avfilter_af_join_outputs[] = {
 AVFilter avfilter_af_join = {
     .name           = "join",
     .description    = NULL_IF_CONFIG_SMALL("Join multiple audio streams into "
-                                           "multi-channel output"),
+                                           "multi-channel output."),
     .priv_size      = sizeof(JoinContext),
     .priv_class     = &join_class,
 
diff --git a/libavfilter/vf_fieldmatch.c b/libavfilter/vf_fieldmatch.c
index 507b5d3..ff803f4 100644
--- a/libavfilter/vf_fieldmatch.c
+++ b/libavfilter/vf_fieldmatch.c
@@ -974,7 +974,7 @@ static const AVFilterPad fieldmatch_outputs[] = {
 
 AVFilter avfilter_vf_fieldmatch = {
     .name           = "fieldmatch",
-    .description    = NULL_IF_CONFIG_SMALL("Field matching for inverse telecine"),
+    .description    = NULL_IF_CONFIG_SMALL("Field matching for inverse telecine."),
     .query_formats  = query_formats,
     .priv_size      = sizeof(FieldMatchContext),
     .init           = fieldmatch_init,
diff --git a/libavfilter/vf_fps.c b/libavfilter/vf_fps.c
index b819567..6a67158 100644
--- a/libavfilter/vf_fps.c
+++ b/libavfilter/vf_fps.c
@@ -275,7 +275,7 @@ static const AVFilterPad avfilter_vf_fps_outputs[] = {
 
 AVFilter avfilter_vf_fps = {
     .name        = "fps",
-    .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
+    .description = NULL_IF_CONFIG_SMALL("Force constant framerate."),
 
     .init      = init,
     .uninit    = uninit,



More information about the ffmpeg-cvslog mailing list