Commit a3cb303a authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/blackframe: add "thres" back as alternative

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 90efdf98
......@@ -96,6 +96,8 @@ static const AVOption blackframe_options[] = {
"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",
OFFSET(bthresh), AV_OPT_TYPE_INT, { .i64 = 32 }, 0, 255, FLAGS },
{ NULL },
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment