diff options
author | Marton Balint <cus@passwd.hu> | 2019-03-01 01:32:00 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2019-03-21 00:39:57 +0100 |
commit | e85f37d51e97a9c97412ca57ece51f551e5f7c80 (patch) | |
tree | d9d3a9142502101e648d1f1c9a4fcadc532ea694 /doc/filters.texi | |
parent | 978880c803d1ce4a627591b8974f447cd6b05c6e (diff) | |
download | ffmpeg-e85f37d51e97a9c97412ca57ece51f551e5f7c80.tar.gz |
avfilter/af_astats: add support for selecting measured statistics
set_metadata with many entries is not very efficient, and with small audio
frames the performance loss is noticable. Also with this very simple
calculations (like peak) can be even further optimized.
Unfoturnately there are some small differences in metadata and av_log info
output, so factorizing calculations and output might not worth the hassle.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 4bf96b6d90..4ffb392a7f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2156,6 +2156,17 @@ For description what each key means read below. @item reset Set number of frame after which stats are going to be recalculated. Default is disabled. + +@item measure_perchannel +Select the entries which need to be measured per channel. The metadata keys can +be used as flags, default is @option{all} which measures everything. +@option{none} disables all per channel measurement. + +@item measure_overall +Select the entries which need to be measured overall. The metadata keys can +be used as flags, default is @option{all} which measures everything. +@option{none} disables all overall measurement. + @end table A description of each shown parameter follows: |