diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-08-29 21:18:53 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-08-30 08:34:05 +0000 |
commit | 7516aa9a4afcfd3c0b1a326045669ad615f39f37 (patch) | |
tree | cbfa5643b942f6b9fc07fa8a922f1835c6bc76c6 /doc | |
parent | 4bd99f715de3ea54319d54f848d16186dd00b039 (diff) | |
download | ffmpeg-7516aa9a4afcfd3c0b1a326045669ad615f39f37.tar.gz |
avfilter/vf_vectorscope: implement envelope support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 3b5f817151..0d87978dde 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -10603,6 +10603,22 @@ Set which color component will be represented on Y-axis. Default is @code{2}. @item intensity Set intensity, used by modes: gray, color and color3 for increasing brightness of color component which represents frequency of (X, Y) location in graph. + +@item envelope, e +@table @samp +@item none +No envelope, this is default. + +@item instant +Instant envelope, even darkest single pixel will be clearly highlighted. + +@item peak +Hold maximum and minimum values presented in graph over time. This way you +can still spot out of range values without constantly looking at vectorscope. + +@item peak+instant +Peak and instant envelope combined together. +@end table @end table @anchor{vidstabdetect} |