Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2015-11-26 00:22:17 +0300
committerPaul B Mahol <onemda@gmail.com>2015-11-26 00:22:17 +0300
commit56ff563f3bbe96e88e2c4eedf8765c77f77033eb (patch)
tree30c54c9522d8064a0e11f43fe80313def37e8e7d /libavfilter/f_realtime.c
parent142894d7202b5559d87f58df30baf48107a816f6 (diff)
avfilter: add '.' at and of long filter description where it is missing
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/f_realtime.c')
-rw-r--r--libavfilter/f_realtime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/f_realtime.c b/libavfilter/f_realtime.c
index 68ad268523..171c16aaaa 100644
--- a/libavfilter/f_realtime.c
+++ b/libavfilter/f_realtime.c
@@ -91,7 +91,7 @@ static const AVFilterPad avfilter_vf_realtime_outputs[] = {
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,
@@ -123,7 +123,7 @@ static const AVFilterPad arealtime_outputs[] = {
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,