summaryrefslogtreecommitdiff
path: root/libavfilter/af_apad.c
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2013-04-11 01:31:08 +0200
committerMatthieu Bouron <matthieu.bouron@gmail.com>2013-04-11 01:31:08 +0200
commita5ce5ac9fb49f156c30524c466cd8a990d3830f1 (patch)
tree68a407d660e13be483db18ea506d9061c50a5606 /libavfilter/af_apad.c
parent2b17e58163270466a48f1d58bdaecc8e93dffa01 (diff)
lavfi/apad: switch to AVOption-based system
Diffstat (limited to 'libavfilter/af_apad.c')
-rw-r--r--libavfilter/af_apad.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/af_apad.c b/libavfilter/af_apad.c
index 3c972e9d40..8c8690ee7c 100644
--- a/libavfilter/af_apad.c
+++ b/libavfilter/af_apad.c
@@ -144,8 +144,6 @@ static const AVFilterPad apad_outputs[] = {
{ NULL },
};
-static const char *const shorthand[] = { NULL };
-
AVFilter avfilter_af_apad = {
.name = "apad",
.description = NULL_IF_CONFIG_SMALL("Pad audio with silence."),
@@ -154,5 +152,4 @@ AVFilter avfilter_af_apad = {
.inputs = apad_inputs,
.outputs = apad_outputs,
.priv_class = &apad_class,
- .shorthand = shorthand,
};