summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-02-23 22:41:07 +0100
committerPaul B Mahol <onemda@gmail.com>2016-02-26 22:22:05 +0100
commit42c5e1cc2ad95c88b5234ff9927c5adfae028896 (patch)
tree78aa4c614bb51614575f6e0fd7ff7b722bdb87fa /doc
parentb5451d88cf8b0e165ae357f49254a66828351a56 (diff)
avfilter: add datascope filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi37
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index d15e4dd530..10f1111e35 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -5240,6 +5240,43 @@ curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
@end example
@end itemize
+@section datascope
+
+Video data analysis filter.
+
+This filter shows hexadecimal pixel values of part of video.
+
+The filter accepts the following options:
+
+@table @option
+@item size, s
+Set output video size.
+
+@item x
+Set x offset from where to pick pixels.
+
+@item y
+Set y offset from where to pick pixels.
+
+@item mode
+Set scope mode, can be one of the following:
+@table @samp
+@item mono
+Draw hexadecimal pixel values with white color on black background.
+
+@item color
+Draw hexadecimal pixel values with input video pixel color on black
+background.
+
+@item color2
+Draw hexadecimal pixel values on color background picked from input video,
+the text color is picked in such way so its always visible.
+@end table
+
+@item axis
+Draw rows and columns numbers on left and top of video.
+@end table
+
@section dctdnoiz
Denoise frames using 2D DCT (frequency domain filtering).