Commit a5ce5ac9 authored by Matthieu Bouron's avatar Matthieu Bouron

lavfi/apad: switch to AVOption-based system

parent 2b17e581
...@@ -144,8 +144,6 @@ static const AVFilterPad apad_outputs[] = { ...@@ -144,8 +144,6 @@ static const AVFilterPad apad_outputs[] = {
{ NULL }, { NULL },
}; };
static const char *const shorthand[] = { NULL };
AVFilter avfilter_af_apad = { AVFilter avfilter_af_apad = {
.name = "apad", .name = "apad",
.description = NULL_IF_CONFIG_SMALL("Pad audio with silence."), .description = NULL_IF_CONFIG_SMALL("Pad audio with silence."),
...@@ -154,5 +152,4 @@ AVFilter avfilter_af_apad = { ...@@ -154,5 +152,4 @@ AVFilter avfilter_af_apad = {
.inputs = apad_inputs, .inputs = apad_inputs,
.outputs = apad_outputs, .outputs = apad_outputs,
.priv_class = &apad_class, .priv_class = &apad_class,
.shorthand = shorthand,
}; };
...@@ -658,6 +658,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque ...@@ -658,6 +658,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
int anton_options = int anton_options =
!strcmp(filter->filter->name, "afade" ) || !strcmp(filter->filter->name, "afade" ) ||
!strcmp(filter->filter->name, "aformat") || !strcmp(filter->filter->name, "aformat") ||
!strcmp(filter->filter->name, "apad" ) ||
!strcmp(filter->filter->name, "ass") || !strcmp(filter->filter->name, "ass") ||
!strcmp(filter->filter->name, "blackframe") || !strcmp(filter->filter->name, "blackframe") ||
!strcmp(filter->filter->name, "blend" ) || !strcmp(filter->filter->name, "blend" ) ||
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment