mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/af_asoftclip: add support for commands
This commit is contained in:
parent
d842998183
commit
3f24e744ad
@ -2257,6 +2257,10 @@ It accepts the following values:
|
|||||||
Set additional parameter which controls sigmoid function.
|
Set additional parameter which controls sigmoid function.
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
|
||||||
|
This filter supports the all above options as @ref{commands}.
|
||||||
|
|
||||||
@section asr
|
@section asr
|
||||||
Automatic Speech Recognition
|
Automatic Speech Recognition
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ typedef struct ASoftClipContext {
|
|||||||
} ASoftClipContext;
|
} ASoftClipContext;
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(ASoftClipContext, x)
|
#define OFFSET(x) offsetof(ASoftClipContext, x)
|
||||||
#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
|
#define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
|
||||||
|
|
||||||
static const AVOption asoftclip_options[] = {
|
static const AVOption asoftclip_options[] = {
|
||||||
{ "type", "set softclip type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, NB_TYPES-1, A, "types" },
|
{ "type", "set softclip type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=0}, 0, NB_TYPES-1, A, "types" },
|
||||||
@ -313,6 +313,7 @@ AVFilter ff_af_asoftclip = {
|
|||||||
.priv_class = &asoftclip_class,
|
.priv_class = &asoftclip_class,
|
||||||
.inputs = inputs,
|
.inputs = inputs,
|
||||||
.outputs = outputs,
|
.outputs = outputs,
|
||||||
|
.process_command = ff_filter_process_command,
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC |
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC |
|
||||||
AVFILTER_FLAG_SLICE_THREADS,
|
AVFILTER_FLAG_SLICE_THREADS,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user