diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-08-22 10:02:15 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-08-23 15:21:06 +0200 |
commit | 12f997d061d390f04717afa77f694e0a4b14c8f5 (patch) | |
tree | 0fc741c07be621d1350bd5b68600e2cd21335017 /doc/filters.texi | |
parent | 3c36d960f4a179fa52cdab419348b85945096ad3 (diff) | |
download | ffmpeg-12f997d061d390f04717afa77f694e0a4b14c8f5.tar.gz |
avfilter: add maskedclamp filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 2d4fa01b42..f2f69e67c4 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -9234,6 +9234,27 @@ lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2' @end example @end itemize +@section maskedclamp + +Clamp the first input stream with the second input and third input stream. + +Returns the value of first stream to be between second input +stream - @code{undershoot} and third input stream + @code{overshoot}. + +This filter accepts the following options: +@table @option +@item undershoot +Default value is @code{0}. + +@item overshoot +Default value is @code{0}. + +@item planes +Set which planes will be processed as bitmap, unprocessed planes will be +copied from first stream. +By default value 0xf, all planes will be processed. +@end table + @section maskedmerge Merge the first input stream with the second input stream using per pixel |