mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/af_crystalizer: improve filter description
This commit is contained in:
parent
cd97e1ff4d
commit
c1c2e6f968
@ -3682,7 +3682,9 @@ Set output gain. Default is 1.
|
|||||||
This filter supports the all above options as @ref{commands}.
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section crystalizer
|
@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:
|
The filter accepts the following options:
|
||||||
|
|
||||||
|
@ -305,7 +305,7 @@ static const AVFilterPad outputs[] = {
|
|||||||
|
|
||||||
AVFilter ff_af_crystalizer = {
|
AVFilter ff_af_crystalizer = {
|
||||||
.name = "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,
|
.query_formats = query_formats,
|
||||||
.priv_size = sizeof(CrystalizerContext),
|
.priv_size = sizeof(CrystalizerContext),
|
||||||
.priv_class = &crystalizer_class,
|
.priv_class = &crystalizer_class,
|
||||||
|
Loading…
Reference in New Issue
Block a user