[FFmpeg-cvslog] avfilter/blackframe: add "thres" back as alternative

Michael Niedermayer git at videolan.org
Wed Apr 10 15:53:37 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Apr 10 15:48:02 2013 +0200| [a3cb303a4c2235c4325130bae16c6e84bc4c9c15] | committer: Michael Niedermayer

avfilter/blackframe: add "thres" back as alternative

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavfilter/vf_blackframe.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_blackframe.c b/libavfilter/vf_blackframe.c
index 968d451..f782ae2 100644
--- a/libavfilter/vf_blackframe.c
+++ b/libavfilter/vf_blackframe.c
@@ -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 },
 };
 



More information about the ffmpeg-cvslog mailing list