aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_blackframe.c
diff options
context:
space:
mode:
authorMoritz Barsnick <barsnick@gmx.net>2016-10-09 12:57:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-26 15:12:25 +0100
commitb480ca4dbd4b7e5c0b362cdc118473cdf84dc9f9 (patch)
treebedf555ff8c9bd18150161b972b7b0b29917dda0 /libavfilter/vf_blackframe.c
parentbb83ff8b4192adc640df62e235c8e0646d119736 (diff)
downloadffmpeg-b480ca4dbd4b7e5c0b362cdc118473cdf84dc9f9.tar.gz
lavfi: fix typos
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit f4e4bde1f4cff99d4ec59ed361ff9228b2050e6b) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/vf_blackframe.c')
-rw-r--r--libavfilter/vf_blackframe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_blackframe.c b/libavfilter/vf_blackframe.c
index ad6d488b3a..9fe2a42942 100644
--- a/libavfilter/vf_blackframe.c
+++ b/libavfilter/vf_blackframe.c
@@ -104,8 +104,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
#define OFFSET(x) offsetof(BlackFrameContext, x)
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
static const AVOption blackframe_options[] = {
- { "amount", "Percentage of the pixels that have to be below the threshold "
- "for the frame to be considered black.", OFFSET(bamount), AV_OPT_TYPE_INT, { .i64 = 98 }, 0, 100, FLAGS },
+ { "amount", "percentage of the pixels that have to be below the threshold "
+ "for the frame to be considered black", OFFSET(bamount), AV_OPT_TYPE_INT, { .i64 = 98 }, 0, 100, FLAGS },
{ "threshold", "threshold below which a pixel value is considered black",
OFFSET(bthresh), AV_OPT_TYPE_INT, { .i64 = 32 }, 0, 255, FLAGS },
{ "thresh", "threshold below which a pixel value is considered black",