Browse Source

avfilter/af_crystalizer: improve filter description

tags/n4.4
Paul B Mahol 4 years ago
parent
commit
c1c2e6f968
2 changed files with 4 additions and 2 deletions
  1. +3
    -1
      doc/filters.texi
  2. +1
    -1
      libavfilter/af_crystalizer.c

+ 3
- 1
doc/filters.texi View File

@@ -3682,7 +3682,9 @@ Set output gain. Default is 1.
This filter supports the all above options as @ref{commands}.

@section crystalizer
Simple algorithm to expand audio dynamic range.
Simple algorithm for audio noise sharpening.

This filter linearly increases differences betweeen each audio sample.

The filter accepts the following options:



+ 1
- 1
libavfilter/af_crystalizer.c View File

@@ -305,7 +305,7 @@ static const AVFilterPad outputs[] = {

AVFilter ff_af_crystalizer = {
.name = "crystalizer",
.description = NULL_IF_CONFIG_SMALL("Simple expand audio dynamic range filter."),
.description = NULL_IF_CONFIG_SMALL("Simple audio noise sharpening filter."),
.query_formats = query_formats,
.priv_size = sizeof(CrystalizerContext),
.priv_class = &crystalizer_class,


Loading…
Cancel
Save