Browse Source

avfilter/blackframe: add "thres" back as alternative

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 13 years ago
parent
commit
a3cb303a4c
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavfilter/vf_blackframe.c

+ 2
- 0
libavfilter/vf_blackframe.c View File

@@ -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 },
};



Loading…
Cancel
Save